mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-09 06:51:23 +00:00
27 lines
710 B
Perl
27 lines
710 B
Perl
|
use base "installedtest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
|
||
|
sub run {
|
||
|
assert_screen "root_console";
|
||
|
# mount first partition and check that it's intact
|
||
|
type_string 'reset; mount /dev/vda1 /mnt; echo $?';
|
||
|
send_key "ret";
|
||
|
assert_screen "console_command_success";
|
||
|
type_string 'reset; cat /mnt/testfile';
|
||
|
send_key "ret";
|
||
|
assert_screen "provided_disk_intact";
|
||
|
}
|
||
|
|
||
|
sub test_flags {
|
||
|
# without anything - rollback to 'lastgood' snapshot if failed
|
||
|
# 'fatal' - whole test suite is in danger if this fails
|
||
|
# 'milestone' - after this test succeeds, update 'lastgood'
|
||
|
# 'important' - if this fails, set the overall state to 'fail'
|
||
|
return { fatal => 1 };
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|
||
|
# vim: set sw=4 et:
|