mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-05 15:34:22 +00:00
29 lines
528 B
Perl
29 lines
528 B
Perl
|
use base "installedtest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
use utils;
|
||
|
|
||
|
sub run {
|
||
|
my $self = shift;
|
||
|
bypass_1691487 unless (get_var("DESKTOP"));
|
||
|
# 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");
|
||
|
}
|
||
|
for my $unwanted (@unwanteds) {
|
||
|
assert_script_run "! rpm -q $unwanted";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
sub test_flags {
|
||
|
return { fatal => 1 };
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|
||
|
# vim: set sw=4 et:
|