mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-10-31 21:44:23 +00:00
12f423f5a8
Signed-off-by: Adam Williamson <awilliam@redhat.com>
24 lines
626 B
Perl
24 lines
626 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
check_desktop;
|
|
# 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');
|
|
my $rawrel = get_var('RAWREL');
|
|
assert_screen "${version}_background" if ($version ne "Rawhide" && $version ne $rawrel);
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|