Project

General

Profile

action #54422

Updated by SLindoMansilla over 4 years ago

## Observation 

 openQA test in scenario opensuse-Tumbleweed-DVD-x86_64-desktopapps-documentation@64bit fails in 
 [libreoffice_recent_documents](https://openqa.opensuse.org/tests/985314/modules/libreoffice_recent_documents/steps/13) 


 

 ## Suggestions 

 - Check if os-autoinst fix is already deployed: https://github.com/os-autoinst/os-autoinst/pull/1174/files Test suite description 
 - Do an statistical investigation on O3 (if fix deployed) or locally with applied patch. Maintainer Yaun Ren 


 ## Acceptance criteria 

 - **AC:** A statistical investigation of 100 jobs doesn't reproduce the issue with the applied patch. 


 ## Reproducible 

 Fails since (at least) Build [20190705](https://openqa.opensuse.org/tests/978198) 


 ## Expected result 

 Last good: [20190704](https://openqa.opensuse.org/tests/976502) (or more recent) 


 ## Further details 

 Always latest result in this scenario: [latest](https://openqa.opensuse.org/tests/latest?arch=x86_64&distri=opensuse&flavor=DVD&machine=64bit&test=desktopapps-documentation&version=Tumbleweed) 


 With the switch of the video driver to std, Tumbleweed (and thus also Leap) moved to Wayland as the default session. 

 In the code for the LO test, there is this block: 

      # Because of bsc#1074057 alt-f is not working in libreoffice under wayland 
      # use another way to replace alt-f in SLED15 
      if (is_sle '15+') { 
          assert_and_click('ooffice-writing-file', timeout => 10); 
      } 
      else { 
          send_key "alt-f";      # is_sle('<15') and openSUSE all need to send key 
      } 

 The if clause would better be based on the session type in this case, rather than product version

Back