mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-25 07:13:09 +00:00
28 lines
467 B
Perl
28 lines
467 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This script starts the KCalc application
|
|
# and saves the milestone for the following
|
|
# tests.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
kde_doublek_workaround();
|
|
# Run the application
|
|
menu_launch_type("kcalc");
|
|
assert_screen("kcalc_runs");
|
|
# wait for system to settle before snapshotting
|
|
sleep 10;
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1, milestone => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|
|
|