mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-30 23:05:58 +00:00 
			
		
		
		
	This reverts commit 56936df7a5. It
was a lovely idea, but forgot that the 'matching update version'
check doesn't actually use the allpkgs.txt list...
		
	
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			601 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			601 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use base "installedtest";
 | |
| use strict;
 | |
| use testapi;
 | |
| use utils;
 | |
| 
 | |
| sub run {
 | |
|     my $self = shift;
 | |
|     $self->root_console(tty => 3);
 | |
|     # do repo_setup if it's not been done already - this is for the
 | |
|     # install_default_update tests
 | |
|     repo_setup;
 | |
|     # figure out which packages from the update actually got installed
 | |
|     # (if any) as part of this test
 | |
|     advisory_get_installed_packages;
 | |
|     # figure out if we have a different version of any package from the
 | |
|     # update installed
 | |
|     advisory_check_nonmatching_packages;
 | |
| }
 | |
| 
 | |
| sub test_flags {
 | |
|     return {fatal => 1};
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set sw=4 et:
 |