1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-27 00:07:24 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/gnome/terminal.pm
Adam Williamson 6654e522ac app start/stop tests: use normal flags for GNOME Terminal test
This test had special flags because it used to be run first and
did the prep steps for the other tests. Now the aaa_setup test
does that job, so there's no reason for this test to have these
flags any more, and somehow they seem to be breaking the test on
Rawhide. Let's give it the same flag as all the other normal
tests.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-01-10 12:43:45 -08:00

28 lines
442 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test tests if Terminal starts.
sub run {
my $self = shift;
# open the application
menu_launch_type "terminal";
assert_screen "apps_run_terminal";
# Register application
register_application("gnome-terminal");
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: