7c1f59cfe8
Signed-off-by: Adam Williamson <awilliam@redhat.com>
22 lines
387 B
Perl
22 lines
387 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
my $self=shift;
|
|
if (not( check_screen "root_console", 0)) {
|
|
$self->root_console(tty=>4);
|
|
}
|
|
assert_screen "root_console";
|
|
# this test shows if the system is booted with efi
|
|
assert_script_run '[ -d /sys/firmware/efi/ ]';
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|