mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 15:24:20 +00:00
ffa7ca2447
This is currently broken, but openQA doesn't notice; we really should. We could also check the default in other cases, but I think that's less clear-cut, as it's kind of an anaconda design choice, it's not mandated in Fedora requirements anywhere. Signed-off-by: Adam Williamson <awilliam@redhat.com>
18 lines
265 B
Perl
18 lines
265 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# check / is xfs, as it should be on server
|
|
assert_script_run 'findmnt -M / -o FSTYPE | grep xfs';
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|