mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-25 23:33:07 +00:00
27 lines
443 B
Perl
27 lines
443 B
Perl
|
use base "installedtest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
use utils;
|
||
|
|
||
|
|
||
|
# This will log root onto a virtual console and an image
|
||
|
# will be created for further use.
|
||
|
# Thus we will not have to restore everything and clean at
|
||
|
# the end of every test script.
|
||
|
|
||
|
sub run {
|
||
|
my $self = shift;
|
||
|
|
||
|
# Let's go to the virtual console
|
||
|
$self->root_console(tty => 3);
|
||
|
}
|
||
|
|
||
|
|
||
|
sub test_flags {
|
||
|
return {fatal => 1, milestone => 1};
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|
||
|
# vim: set sw=4 et:
|