diff options
author | pmikus <pmikus@cisco.com> | 2017-03-29 16:51:34 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2017-04-09 14:47:25 +0000 |
commit | 2e115ad11cca45b11c0f1949fd8c42fec899bb68 (patch) | |
tree | dc5e73e56944f5639d28de6e2cbedfce491af992 /resources/libraries/robot | |
parent | ffd596f616dc9a65e113b25ba72b00ce6dd42a7b (diff) |
CSIT-441 vhost - Parametrized qemu install
Update the current QEMU installation script with option to override QEMU
installation and to apply additional patches. Additional patches are
applied from qemu_patches directory and subdir for specific QEMU version by
run-parts. This means that all patches for particular version are
applied.
All keywords for build QEMU are updated.
Change-Id: I0c874a96ac828dff657ee33eb87d88a8854128ad
Signed-off-by: pmikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries/robot')
-rw-r--r-- | resources/libraries/robot/qemu.robot | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/resources/libraries/robot/qemu.robot b/resources/libraries/robot/qemu.robot index 989b73e531..5d1e3d5959 100644 --- a/resources/libraries/robot/qemu.robot +++ b/resources/libraries/robot/qemu.robot @@ -45,7 +45,18 @@ | Build QEMU on Node | | [Documentation] | Build QEMU from sources on the Node. Nodes with successful | | ... | QEMU build are stored in global variable list QEMU_BUILD -| | [Arguments] | ${node} +| | ... +| | ... | *Arguments:* +| | ... | - node - Node on which to build qemu. Type: dictionary +| | ... | - force_install - If True, then remove previous build. Type: bool +| | ... | - apply_patch - If True, then apply patches from qemu_patches dir. +| | ... | Type: bool +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Build QEMU on Node \| ${node['DUT1']} \| False \| False \| +| | ... +| | [Arguments] | ${node} | ${force_install}=${False} | ${apply_patch}=${False} | | ${ready}= | Is QEMU Ready on Node | ${node} | | Return From Keyword If | ${ready} == ${TRUE} | | Build QEMU | ${node} @@ -54,9 +65,21 @@ | Build QEMU on all DUTs | | [Documentation] | Build QEMU from sources on all DUTs. Nodes with successful | | ... | QEMU build are stored in global variable list QEMU_BUILD +| | ... +| | ... | *Arguments:* +| | ... | - force_install - If True, then remove previous build. Type: bool +| | ... | - apply_patch - If True, then apply patches from qemu_patches dir. +| | ... | Type: bool +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Build QEMU on all DUTs \| False \| False \| +| | ... +| | [Arguments] | ${force_install}=${False} | ${apply_patch}=${False} | | ${duts}= | Get Matches | ${nodes} | DUT* | | :FOR | ${dut} | IN | @{duts} -| | | Build QEMU on Node | ${nodes['${dut}']} +| | | Build QEMU on Node | ${nodes['${dut}']} | ${force_install} | +| | | ... | ${apply_patch} | Stop and Clear QEMU | | [Documentation] | Stop QEMU, clear used sockets and close SSH connection |