2018-01-05 21:38:09 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
2019-03-21 09:22:35 +00:00
|
|
|
use utils;
|
2018-01-05 21:38:09 +00:00
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
2023-01-13 16:43:05 +00:00
|
|
|
# switch to TTY3 for both, graphical and console tests
|
2023-02-12 22:59:37 +00:00
|
|
|
$self->root_console(tty => 3);
|
2023-01-13 16:43:05 +00:00
|
|
|
|
2018-01-05 21:38:09 +00:00
|
|
|
# check / is xfs, as it should be on server
|
|
|
|
assert_script_run 'findmnt -M / -o FSTYPE | grep xfs';
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2023-02-12 22:59:37 +00:00
|
|
|
return {fatal => 1};
|
2018-01-05 21:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|