mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-02-08 08:43:07 +00:00
28 lines
516 B
Perl
28 lines
516 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, milestone => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|