mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-30 23:05:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			486 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			486 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use base "installedtest";
 | |
| use strict;
 | |
| use testapi;
 | |
| use utils;
 | |
| 
 | |
| sub run {
 | |
|     my $self = shift;
 | |
|     # switch to TTY3 for both, graphical and console tests
 | |
|     $self->root_console(tty => 3);
 | |
|     my @unwanteds;
 | |
|     my $subv = get_var("SUBVARIANT");
 | |
|     if ($subv eq "Workstation") {
 | |
|         @unwanteds = ("gtk2", "qt");
 | |
|     }
 | |
|     for my $unwanted (@unwanteds) {
 | |
|         assert_script_run "! rpm -q $unwanted";
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| sub test_flags {
 | |
|     return {fatal => 1};
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set sw=4 et:
 |