1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-12-10 02:45:59 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/abrt.pm
Adam Williamson c294be4e9b Fix kde apps_startstop abrt
For some reason typing 'abrt' now launches Partition Manager(?!),
so we need to type 'problem' instead, and do checkstart ourselves.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2025-10-17 10:36:47 -07:00

27 lines
463 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that ABRT starts.
sub run {
my $self = shift;
# Start the application
# typing 'abrt' prefers Partition Manager for some reason,
# so we have to skip checkstart
menu_launch_type('problem', checkstart => 0);
assert_screen("apps_run_abrt");
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {};
}
1;
# vim: set sw=4 et: