diff --git a/needles/gnome/apps/apps_menu_rhythmbox-20210304.json b/needles/gnome/apps/apps_menu_rhythmbox-20210304.json deleted file mode 100644 index 4f1d24f9..00000000 --- a/needles/gnome/apps/apps_menu_rhythmbox-20210304.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "area": [ - { - "height": 25, - "ypos": 707, - "xpos": 452, - "width": 20, - "type": "match" - } - ], - "properties": [], - "tags": [ - "apps_menu_rhythmbox" - ] -} \ No newline at end of file diff --git a/needles/gnome/apps/apps_menu_rhythmbox-20210304.png b/needles/gnome/apps/apps_menu_rhythmbox-20210304.png deleted file mode 100644 index 44378c5e..00000000 Binary files a/needles/gnome/apps/apps_menu_rhythmbox-20210304.png and /dev/null differ diff --git a/needles/gnome/apps/apps_run_rhythmbox-20200117.json b/needles/gnome/apps/apps_run_rhythmbox-20200117.json deleted file mode 100644 index b71e2ab4..00000000 --- a/needles/gnome/apps/apps_run_rhythmbox-20200117.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "area": [ - { - "ypos": 82, - "width": 85, - "height": 23, - "type": "match", - "xpos": 468 - } - ], - "properties": [], - "tags": [ - "apps_run_rhythmbox" - ] -} \ No newline at end of file diff --git a/needles/gnome/apps/apps_run_rhythmbox-20200117.png b/needles/gnome/apps/apps_run_rhythmbox-20200117.png deleted file mode 100644 index 2405ebf0..00000000 Binary files a/needles/gnome/apps/apps_run_rhythmbox-20200117.png and /dev/null differ diff --git a/needles/gnome/apps/apps_run_rhythmbox-20250319.json b/needles/gnome/apps/apps_run_rhythmbox-20250319.json deleted file mode 100644 index 09f2ecb3..00000000 --- a/needles/gnome/apps/apps_run_rhythmbox-20250319.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "area": [ - { - "type": "match", - "ypos": 110, - "xpos": 469, - "height": 23, - "width": 85 - } - ], - "properties": [], - "tags": [ - "apps_run_rhythmbox" - ] -} \ No newline at end of file diff --git a/needles/gnome/apps/apps_run_rhythmbox-20250319.png b/needles/gnome/apps/apps_run_rhythmbox-20250319.png deleted file mode 100644 index 188e6d70..00000000 Binary files a/needles/gnome/apps/apps_run_rhythmbox-20250319.png and /dev/null differ diff --git a/tests/apps_startstop/gnome/rhythmbox.pm b/tests/apps_startstop/gnome/rhythmbox.pm deleted file mode 100644 index 90f285fc..00000000 --- a/tests/apps_startstop/gnome/rhythmbox.pm +++ /dev/null @@ -1,43 +0,0 @@ -use base "installedtest"; -use strict; -use testapi; -use utils; - -# This test checks that Rhythmbox starts. - -sub run { - my $self = shift; - my $subvariant = get_var("SUBVARIANT", "Workstation"); - - if ($subvariant ne "Silverblue") { - # Start the application - start_with_launcher('apps_menu_rhythmbox'); - # To give the screen a bit of time. - wait_still_screen(2); - # On June 15th, 2022, we realized that Rhythmbox tends to - # crash on fresh installation when run for the first time. - # When this happens, softfail and try to start it again. - unless (check_screen("apps_run_rhythmbox")) { - record_soft_failure("Rhythmbox probably crashed when launched for the first time."); - start_with_launcher('apps_menu_rhythmbox'); - } - # Check that application has started. - assert_screen 'apps_run_rhythmbox'; - # Register application - register_application("rhythmbox"); - # Close the application - quit_with_shortcut(); - } - else { - diag("Rhythmbox not installed, skipping the test."); - } - -} - -sub test_flags { - return {}; -} - -1; - -# vim: set sw=4 et: