mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 15:24:20 +00:00
460a6e5439
I forgot `script_run` actually returns the exit code. That makes it easier.
38 lines
1.1 KiB
Perl
38 lines
1.1 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
|
|
my $ret = script_run "grep '0 loaded units' /tmp/failed.txt";
|
|
return if $ret == 0;
|
|
# if only mcelog failed, that's a soft fail
|
|
$ret = script_run "grep '1 loaded units' /tmp/failed.txt";
|
|
if ($ret != 0) {
|
|
die "More than one services failed to start";
|
|
}
|
|
else {
|
|
# fail if it's something other than mcelog
|
|
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:
|