Project

General

Profile

action #62579

Updated by michel_mno over 4 years ago

test fails in gedit with duplicated characters, transient Leap15.2 ppc64le 

 two identified occurrences: 
 * Build 71.2: https://openqa.opensuse.org/tests/1141177#step/gedit/5 
     "If you can see thisss text gedit is working" 
 * Build 82.2: https://openqa.opensuse.org/tests/1151684#step/gedit/6 
     "If you can see this text gedddit is working" 

 I assume root cause is the handling of queue by qemu when Host is overloaded. 

 ## Suggestions 
 A bypass (masking root problem) may be to patch "enter_test_text" to force slow typing for PowerPC 
     +++ b/lib/opensusebasetest.pm 
     @@ -710,7 +710,7 @@ sub enter_test_text { 
     my ($self, $name, %args) = @_; 
     $name         //= 'your program'; 
     $args{cmd}    //= 0; 
     -      $args{slow} //= 0; 
     +      $args{slow} //= get_var('OFW') ? 1 : 0; 



 ## Observation 

 openQA test in scenario opensuse-15.2-DVD-ppc64le-gnome@ppc64le fails in 
 [gedit](https://openqa.opensuse.org/tests/1151684/modules/gedit/steps/5) 

 ## Test suite description 



 ## Reproducible 

 Fails since (at least) Build [82.2](https://openqa.opensuse.org/tests/1151684) (current job) 


 ## Expected result 

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


 ## Further details 

 Always latest result in this scenario: [latest](https://openqa.opensuse.org/tests/latest?arch=ppc64le&distri=opensuse&flavor=DVD&machine=ppc64le&test=gnome&version=15.2) 

Back