mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-31 15:16:00 +00:00 
			
		
		
		
	When there's a failed service we get a stupid bullet-point char at the start of its line, and all the other lines are space- padded to match indentation. Which is annoying! This (I hope) ditches that crap without losing anything of value. Signed-off-by: Adam Williamson <awilliam@redhat.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			811 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			811 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use base "installedtest";
 | |
| use strict;
 | |
| use testapi;
 | |
| 
 | |
| sub run {
 | |
|     my $self = shift;
 | |
|     $self->root_console(tty=>4);
 | |
|     assert_script_run 'top -i -n20 -b > /var/tmp/top.log', 120;
 | |
|     upload_logs '/var/tmp/top.log';
 | |
|     unless (get_var("CANNED")) {
 | |
|         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 "[[:graph:]]*\.service" > /var/tmp/services.log';
 | |
|     upload_logs '/var/tmp/services.log';
 | |
| }
 | |
| 
 | |
| sub test_flags {
 | |
|     return { 'ignore_failure' => 1 };
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set sw=4 et:
 |