X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Fqemu.robot;h=a9cf0101a5a118ce4d2f423f76d27ffa6e8edfb0;hp=e26f9aa6bfb283ef87c2961253430fb8ae377ff0;hb=74afb9bce89ee2ca456c9e9f1e5b016a3befc20e;hpb=5d5db63262e5c141e5eb435c65154cee214887af diff --git a/resources/libraries/robot/qemu.robot b/resources/libraries/robot/qemu.robot index e26f9aa6bf..a9cf0101a5 100644 --- a/resources/libraries/robot/qemu.robot +++ b/resources/libraries/robot/qemu.robot @@ -12,7 +12,7 @@ # limitations under the License. *** Settings *** | Library | resources.libraries.python.QemuUtils -| Library | Collections +| Library | resources.libraries.python.ssh.SSH *** Keywords *** @@ -50,3 +50,30 @@ | | 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 +| | ${duts}= | Get Matches | ${nodes} | DUT* +| | :FOR | ${dut} | IN | @{duts} +| | | Build QEMU on Node | ${nodes['${dut}']} + +| 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 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