1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-08 08:43:07 +00:00
os-autoinst-distri-fedora/tests/applications/bugreporter/aaa_setup.pm
Lukáš Růžička 884bffb603 Update tests.
2022-09-19 14:43:04 +02:00

28 lines
500 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This script prepares the environment for the bug reporter (Abrt) test.
sub run {
my $self = shift;
# Go to the root console to perform settings.
$self->root_console(tty => 3);
# Install will-crash -> we will use this to generate some Abrt problems.
assert_script_run("dnf install -y will-crash");
# Return to Desktop
desktop_vt();
}
sub test_flags {
return {fatal => 1};
}
1;
# vim: set sw=4 et: