2018-12-18 12:07:37 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
2021-09-06 15:34:45 +00:00
|
|
|
# This test tests if Terminal starts.
|
2018-12-18 12:07:37 +00:00
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
2019-09-19 14:03:50 +00:00
|
|
|
# open the application
|
2021-09-06 15:34:45 +00:00
|
|
|
menu_launch_type "terminal";
|
2020-02-25 09:24:38 +00:00
|
|
|
assert_screen "apps_run_terminal";
|
2018-12-18 12:07:37 +00:00
|
|
|
|
2019-09-19 14:03:50 +00:00
|
|
|
# Register application
|
|
|
|
register_application("gnome-terminal");
|
|
|
|
|
|
|
|
# Close the application
|
2018-12-18 12:07:37 +00:00
|
|
|
quit_with_shortcut();
|
|
|
|
}
|
|
|
|
|
2022-07-28 20:32:57 +00:00
|
|
|
# If this test fails, the others will probably start failing too,
|
2018-12-18 12:07:37 +00:00
|
|
|
# so there is no need to continue.
|
|
|
|
# Also, when subsequent tests fail, the suite will revert to this state for further testing.
|
|
|
|
sub test_flags {
|
2022-07-28 20:32:57 +00:00
|
|
|
return {fatal => 1, milestone => 1};
|
2018-12-18 12:07:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|