os-autoinst-distri-rocky/tests/_collect_data.pm
Adam Williamson dac3c2dd38 Use systemctl --no-legend when collecting service info
Without this, when there are failed services, we get an extra
column to the left of the service names with a unicode dot for
each failed service, which is awkward and screws up the parsing.
2017-01-11 11:58:37 -08:00

31 lines
984 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 --no-legend | 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: