mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 23:24:21 +00:00
6f90ff0143
Committing without review as this is pretty trivial. Running top *after* all the other collect_data tasks leads to some meaningless fluctuations in the output; I intended to look for activity caused by stuff running 'as usual', not activity from the other collect_data tasks.
31 lines
971 B
Perl
31 lines
971 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
$self->root_console(tty=>3);
|
|
assert_script_run 'top -i -n20 -b > /var/tmp/top.log';
|
|
upload_logs '/var/tmp/top.log';
|
|
assert_script_run 'rpm -qa --queryformat "%{NAME}\n" | sort -u > /var/tmp/rpms.log';
|
|
upload_logs '/var/tmp/rpms.log';
|
|
assert_script_run 'free > /var/tmp/free.log';
|
|
upload_logs '/var/tmp/free.log';
|
|
assert_script_run 'df > /var/tmp/df.log';
|
|
upload_logs '/var/tmp/df.log';
|
|
assert_script_run 'systemctl -t service --no-pager |grep -o ".*\.service" > /var/tmp/services.log';
|
|
upload_logs '/var/tmp/services.log';
|
|
}
|
|
|
|
sub test_flags {
|
|
# without anything - rollback to 'lastgood' snapshot if failed
|
|
# 'fatal' - whole test suite is in danger if this fails
|
|
# 'milestone' - after this test succeeds, update 'lastgood'
|
|
# 'important' - if this fails, set the overall state to 'fail'
|
|
return {};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|