diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2019-10-19 17:34:33 +0200 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-10-25 18:37:01 +0200 |
commit | b1c452168037a1a2f64d36f9062ec10e1dec411a (patch) | |
tree | 9582bf6655d5736c6a47696eef341121194f601a | |
parent | 2c5bf8108e8f153c4d81f305e493033faba3901f (diff) | |
download | qemu-b1c452168037a1a2f64d36f9062ec10e1dec411a.zip |
tests/ssh_linux_malta: Run tests using a snapshot image
If a test fails, it can corrupt the underlying QCow2 image,
making further tests failing.
Fix this by running each test with a snapshot.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Message-Id: <20191019153437.9820-8-f4bug@amsat.org>
-rw-r--r-- | tests/acceptance/linux_ssh_mips_malta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/linux_ssh_mips_malta.py b/tests/acceptance/linux_ssh_mips_malta.py index 25a1df5098..6ecf33509c 100644 --- a/tests/acceptance/linux_ssh_mips_malta.py +++ b/tests/acceptance/linux_ssh_mips_malta.py @@ -102,7 +102,7 @@ class LinuxSSH(Test): self.vm.add_args('-no-reboot', '-kernel', kernel_path, '-append', kernel_command_line, - '-hda', image_path, + '-drive', 'file=%s,snapshot=on' % image_path, '-netdev', 'user,id=vnet,hostfwd=:127.0.0.1:0-:22', '-device', 'pcnet,netdev=vnet') self.vm.launch() |