Prevent the Konqueror test from running on F32 and later.

This commit is contained in:
Lukáš Růžička 2020-03-31 09:37:11 +02:00
parent a54f020118
commit 00b756f0e2

View File

@ -7,13 +7,15 @@ use utils;
sub run { sub run {
my $self = shift; my $self = shift;
my $version = get_var("VERSION");
if ($version < 32) || ($version ne "Rawhide") {
# Start the application # Start the application
menu_launch_type 'konqueror'; menu_launch_type 'konqueror';
# Check that it is started # Check that it is started
assert_screen 'konqueror_runs'; assert_screen 'konqueror_runs';
# Close the application # Close the application
quit_with_shortcut(); quit_with_shortcut();
}
} }
sub test_flags { sub test_flags {