os-autoinst-distri-fedora/tests/_console_avc_crash.pm

33 lines
1.1 KiB
Perl
Raw Normal View History

use base "installedtest";
use strict;
2016-12-08 20:20:09 +00:00
use main_common;
use testapi;
sub run {
my $self = shift;
$self->root_console(tty=>3);
# if this is a non-English, non-switched layout, load US layout
# at this point
# FIXME: this is all kind of a mess, as on such configs we need
# native layout to log in to a console but US layout to type
# anything at a console. the more advanced upstream 'console'
# handling may help us here if we switch to it
console_loadkeys_us;
# check there are no AVCs. We use ! because this returns 1
validate_script_output '! ausearch -m avc -ts yesterday 2>&1', sub { $_ =~ m/<no matches>/ };
# check there are no crashes
validate_script_output '! coredumpctl list 2>&1', sub { $_ =~ m/No coredumps found/ };
}
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 {};
}
1;
# vim: set sw=4 et: