diff options
author | pmikus <pmikus@cisco.com> | 2017-04-05 09:35:05 +0200 |
---|---|---|
committer | Matej Klotton <mklotton@cisco.com> | 2017-04-07 08:01:55 +0000 |
commit | ffd596f616dc9a65e113b25ba72b00ce6dd42a7b (patch) | |
tree | ec1c21921188a62b627d60347972d8b6dc123a94 /tests/perf | |
parent | 0b7283e206789dc8864d15f255cc9677de0b3d97 (diff) |
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 <pmikus@cisco.com>
Diffstat (limited to 'tests/perf')
-rw-r--r-- | tests/perf/__init__.robot | 6 |
1 files changed, 5 insertions, 1 deletions
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 |