Project

General

Profile

action #34402

Updated by okurz almost 6 years ago

## Motivation 

 On s390x the `extra_tests_on_gnome` test suite is actually "textmode test suite" because `DESKTOP` is set to `textmode`. 

 `main_common.pm`: 

 ``` 
     if (any_desktop_is_applicable()) { 
         load_extra_tests_desktop; 
     } 
     else { 
         load_extra_tests_textmode; 
     } 
 ``` 

 I guess that the test suite should not be run as it's the same as `extra_tests_in_textmode` which is being scheduled in SLE:Functional. 

 Unless s390x can boot to some desktop :). 

 ## Acceptance criteria 

 * **AC1:** extra_tests_on_gnome is only scheduled when it actually executes within the gnome session

Back