2021-04-30 22:46:55 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
# switch to TTY3 for both, graphical and console tests
|
2022-07-28 20:32:57 +00:00
|
|
|
$self->root_console(tty => 3);
|
2021-04-30 22:46:55 +00:00
|
|
|
my @unwanteds;
|
|
|
|
my $subv = get_var("SUBVARIANT");
|
|
|
|
if ($subv eq "Workstation") {
|
2021-05-04 15:34:14 +00:00
|
|
|
@unwanteds = ("gtk2", "qt");
|
2021-04-30 22:46:55 +00:00
|
|
|
}
|
|
|
|
for my $unwanted (@unwanteds) {
|
|
|
|
assert_script_run "! rpm -q $unwanted";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub test_flags {
|
2022-07-28 20:32:57 +00:00
|
|
|
return {fatal => 1};
|
2021-04-30 22:46:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|