mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-14 10:44:22 +00:00
c9ede993e5
The old version wasn't working - it was passing even though two services fail to start in Workstation currently. I'm really not sure why the old approach wasn't working, but it wasn't, and I rather hate `script_output` anyway, so here's a different way of doing it which relies on `eval`ing `assert_script_output` instead. (I really should send a PR for a non-fatal version of assert_script_output...)
37 lines
1.0 KiB
Perl
37 lines
1.0 KiB
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# switch to TTY3 for both, graphical and console tests
|
|
$self->root_console(tty=>3);
|
|
# dump the systemctl output
|
|
assert_script_run "systemctl --failed | tee /tmp/failed.txt";
|
|
# if we have 0 failed services, we're good
|
|
eval "assert_script_run 'grep \"0 loaded units\" /tmp/failed.txt';";
|
|
return unless $@;
|
|
# if only mcelog failed, that's a soft fail
|
|
eval "assert_script_run 'grep \"1 loaded units\" /tmp/failed.txt';";
|
|
if ($@) {
|
|
die "More than one services failed to start";
|
|
}
|
|
else {
|
|
assert_script_run "systemctl is-failed mcelog.service";
|
|
record_soft_failure;
|
|
}
|
|
}
|
|
|
|
|
|
sub test_flags {
|
|
# without anything - rollback to 'lastgood' snapshot if failed
|
|
# 'fatal' - whole test suite is in danger if this fails
|
|
# 'milestone' - after this test succeeds, update 'lastgood'
|
|
# 'important' - if this fails, set the overall state to 'fail'
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|