1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-25 15:23:08 +00:00
os-autoinst-distri-fedora/tests/rtt/aaa_setup.pm
2023-11-13 11:31:17 +01:00

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: