mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-10-31 21:44:23 +00:00
e6fe996613
This reverts commit 8b2977f1d618316ded61420df4fc7d2afd07cbf4. The initial commit was required for PowerPC until qemu 2.7.1-6 (in f25) not required anymore since qemu 2.9.0-5 (in f26)
19 lines
335 B
Perl
19 lines
335 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
assert_screen "root_console";
|
|
# check that second disk is intact
|
|
assert_script_run 'mount /dev/vdb1 /mnt';
|
|
validate_script_output 'cat /mnt/testfile', sub { $_ =~ m/Hello, world!/ };
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|