1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-09-27 16:38:50 +00:00
os-autoinst-distri-fedora/tests/applications/sysmon/aaa_setup.pm
Adam Williamson 0f4e91c993 menu_launch_type: don't wait_still_screen for animated apps
This is intended for things like system monitor where there's
constant motion on the app screen so we can't wait_still_screen.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2025-08-25 15:02:03 -07:00

26 lines
556 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This script opens the System Monitor application and saves the milestone
# to make it ready for further testing.
sub run {
my $self = shift;
# Set the update notification timestamp
set_update_notification_timestamp();
# Start the Application
menu_launch_type("system_monitor", checkstart => 1, maximize => 1, animated => 1);
}
sub test_flags {
# If this test fails, there is no need to continue.
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: