X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Fqemu.robot;h=5d1e3d5959288b4f2c7033079eda50add36e4f67;hb=afa3def247a11985b17f310e58b6f5fae16dc306;hp=171a9be5a38a2c10d78f7fba6da68b6d3f86a349;hpb=4c597cafd320c1e68f81768e14abc9f89bbc07e2;p=csit.git diff --git a/resources/libraries/robot/qemu.robot b/resources/libraries/robot/qemu.robot index 171a9be5a3..5d1e3d5959 100644 --- a/resources/libraries/robot/qemu.robot +++ b/resources/libraries/robot/qemu.robot @@ -45,21 +45,55 @@ | 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} | | Add Node to QEMU Build List | ${node} +| 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}']} | ${force_install} | +| | | ... | ${apply_patch} + | Stop and Clear QEMU | | [Documentation] | Stop QEMU, clear used sockets and close SSH connection | | ... | running on ${dut}, ${vm} is VM node info dictionary | | ... | returned by qemu_start or None. | | [Arguments] | ${dut} | ${vm} | | Qemu Set Node | ${dut} -| | ${status} | ${value}= | Run Keyword And Ignore Error | Qemu System Status -| | Run Keyword If | "${status}" == "FAIL" | Qemu Kill -| | ... | ELSE IF | "${value}" == "running" | Qemu System Powerdown -| | ... | ELSE | Qemu Quit +| | Qemu Kill | | Qemu Clear Socks | | Run Keyword If | ${vm} is not None | Disconnect | ${vm} + +| Kill Qemu on all DUTs +| | [Documentation] | Kill QEMU processes on all DUTs. +| | ${duts}= | Get Matches | ${nodes} | DUT* +| | :FOR | ${dut} | IN | @{duts} +| | | Qemu Set Node | ${nodes['${dut}']} +| | | Qemu Kill