mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-16 02:01:25 +00:00
22 lines
366 B
Perl
22 lines
366 B
Perl
|
use base "anacondatest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
use utils;
|
||
|
use tapnet;
|
||
|
|
||
|
sub run {
|
||
|
my $self = shift;
|
||
|
assert_and_click "anaconda_main_hub_kdump";
|
||
|
assert_and_click "anaconda_kdump_enable";
|
||
|
assert_screen "anaconda_kdump_enabled", 90;
|
||
|
assert_and_click "anaconda_spoke_done";
|
||
|
}
|
||
|
|
||
|
sub test_flags {
|
||
|
return { fatal => 1 };
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|
||
|
# vim: set sw=4 et:
|