mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
1a65993d36
Signed-off-by: Adam Williamson <awilliam@redhat.com>
28 lines
486 B
Perl
28 lines
486 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# switch to TTY3 for both, graphical and console tests
|
|
$self->root_console(tty => 3);
|
|
my @unwanteds;
|
|
my $subv = get_var("SUBVARIANT");
|
|
if ($subv eq "Workstation") {
|
|
@unwanteds = ("gtk2", "qt");
|
|
}
|
|
for my $unwanted (@unwanteds) {
|
|
assert_script_run "! rpm -q $unwanted";
|
|
}
|
|
}
|
|
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|