From 00b756f0e21fe9e16949542cd9b29d34f173b892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20R=C5=AF=C5=BEi=C4=8Dka?= Date: Tue, 31 Mar 2020 09:37:11 +0200 Subject: [PATCH] Prevent the Konqueror test from running on F32 and later. --- tests/apps_startstop/kde/konqueror.pm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/tests/apps_startstop/kde/konqueror.pm b/tests/apps_startstop/kde/konqueror.pm index 496c5736..fc6fe88e 100644 --- a/tests/apps_startstop/kde/konqueror.pm +++ b/tests/apps_startstop/kde/konqueror.pm @@ -7,13 +7,15 @@ use utils; sub run { my $self = shift; - - # Start the application - menu_launch_type 'konqueror'; - # Check that it is started - assert_screen 'konqueror_runs'; - # Close the application - quit_with_shortcut(); + my $version = get_var("VERSION"); + if ($version < 32) || ($version ne "Rawhide") { + # Start the application + menu_launch_type 'konqueror'; + # Check that it is started + assert_screen 'konqueror_runs'; + # Close the application + quit_with_shortcut(); + } } sub test_flags {