From ffd596f616dc9a65e113b25ba72b00ce6dd42a7b Mon Sep 17 00:00:00 2001 From: pmikus Date: Wed, 5 Apr 2017 09:35:05 +0200 Subject: CSIT-553 Make QEMU bin configurable Add option to set path for QEMU binary and make it configurable in perf testaces as global variable. Change-Id: I95f4b1ab790b576f1eca02ccdb86f7a6ced80630 Signed-off-by: pmikus --- tests/perf/__init__.robot | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/perf/__init__.robot b/tests/perf/__init__.robot index 845716780f..107892685c 100644 --- a/tests/perf/__init__.robot +++ b/tests/perf/__init__.robot @@ -29,12 +29,16 @@ | | ... | Setup suite Variables. Variables are used across performance testing. | | ... | | ... | _NOTE:_ This KW sets following suite variables: -| | ... | - perf_trial_duration - Duration of traffic run [s]. +| | ... | - perf_trial_duration - Duration of traffic run [s] | | ... | - perf_pdr_loss_acceptance - Loss acceptance treshold | | ... | - perf_pdr_loss_acceptance_type - Loss acceptance treshold type | | ... | - perf_vm_image - Guest VM disk image +| | ... | - perf_qemu_bin - Path to QEMU binary +| | ... | - perf_qemu_qsz - QEMU virtio queue size | | ... | | Set Global Variable | ${perf_trial_duration} | 10 | | Set Global Variable | ${perf_pdr_loss_acceptance} | 0.5 | | Set Global Variable | ${perf_pdr_loss_acceptance_type} | percentage | | Set Global Variable | ${perf_vm_image} | /var/lib/vm/csit-nested-1.6.img +| | Set Global Variable | ${perf_qemu_bin} | /usr/bin/qemu-system-x86_64 +| | Set Global Variable | ${perf_qemu_qsz} | 256 -- cgit 1.2.3-korg