2019-08-14 21:30:25 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
2019-08-14 21:42:18 +00:00
|
|
|
use utils;
|
2019-08-14 21:30:25 +00:00
|
|
|
|
|
|
|
sub run {
|
|
|
|
check_desktop_clean;
|
|
|
|
# If we want to check that there is a correct background used, as a part
|
|
|
|
# of self identification test, we will do it here. For now we don't do
|
|
|
|
# this for Rawhide as Rawhide doesn't have its own backgrounds and we
|
|
|
|
# don't have any requirement for what background Rawhide uses.
|
|
|
|
my $version = get_var('VERSION');
|
|
|
|
assert_screen "${version}_background" if ($version ne "Rawhide");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
2019-08-14 21:43:23 +00:00
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|