action #19854
closed[regression][tw] minimalx-image fails to shut down
0%
Description
Sample test run: https://openqa.opensuse.org/tests/421551
Since the reboot/shutdown code had been changed, this test no longer passes, resulting in 5 test runs to be incomplete/skipped (the image and the 4 tests depending on it)
Updated by michalnowak almost 8 years ago
- Project changed from openQA Project (public) to openQA Tests (public)
- Category set to Bugs in existing tests
- Status changed from New to In Progress
power_action
call translates here to
if (get_var("DESKTOP") =~ m/minimalx|textmode/) {
power('off');
}
which on qemu backend translates to QMP command quit
, which terminates QEMU instance. This looks to me a bit rough at this stage as backend itself - not test - is supposed to kill qemu process.
I'll go with power('acpi')
, which translates to system_powerdown
HMP command and see, how the IceWM reacts to that.
Updated by dimstar almost 8 years ago
Max created https://github.com/os-autoinst/os-autoinst-distri-opensuse/pull/3086 that addresses this as well
Updated by dimstar almost 8 years ago
- Status changed from In Progress to Resolved
Max' pullreq has been merged and a successful test run completed: https://openqa.opensuse.org/tests/421784