mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-01-18 06:33:09 +00:00
10c5ff7038
This adds two initial custom layout install tests for webUI, and wires up some library functions for other tests to use. They may need refining over time but this should be good enough for a start. Signed-off-by: Adam Williamson <awilliam@redhat.com>
19 lines
307 B
Perl
19 lines
307 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
$self->root_console(tty => 3, timeout => 30);
|
|
# check that xfs is used on root partition
|
|
assert_script_run "mount | grep 'on / type xfs'";
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|