2018-09-26 13:32:42 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
sub run {
|
|
|
|
my $self=shift;
|
|
|
|
my $hook_run = 0;
|
|
|
|
# switch to tty and login as root
|
|
|
|
$self->root_console(tty=>3);
|
|
|
|
|
|
|
|
# Download the testing script
|
|
|
|
download_modularity_tests();
|
|
|
|
|
2019-07-10 08:47:10 +00:00
|
|
|
# Check that modularity works, that a particular module is available in the system,
|
|
|
|
# and display information about that module.
|
2019-07-03 08:42:33 +00:00
|
|
|
assert_script_run('/root/test.py -m dwm -s 6.1 -a list');
|
2018-09-26 13:32:42 +00:00
|
|
|
|
|
|
|
# Check that module can be enabled and disabled.
|
2019-07-03 08:42:33 +00:00
|
|
|
assert_script_run('/root/test.py -m dwm -s 6.1 -a enable,disable -f hard');
|
2019-07-10 08:47:10 +00:00
|
|
|
|
|
|
|
# Upload the modular log file.
|
|
|
|
upload_logs '/root/modular.log', failok=>1;
|
2018-09-26 13:32:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|