Marcus Meissner
75c61a4b11
- new gawk_ppc64le_ignore_transient_test_time_failure.patch experienced on Staging:A OBS-URL: https://build.opensuse.org/request/show/393719 OBS-URL: https://build.opensuse.org/package/show/Base:System/gawk?expand=0&rev=46
43 lines
1.5 KiB
Diff
43 lines
1.5 KiB
Diff
From: Michel Normand <normand@linux.vnet.ibm.com>
|
|
Subject: gawk ppc64le ignore transient test time failure
|
|
Date: Wed, 04 May 2016 17:46:51 +0200
|
|
|
|
gawk ignore test/time.awk transient failure
|
|
I experienced it one time on ppc64le with gawk version 4.1.3
|
|
===
|
|
[ 50s] ============== _time =============
|
|
[ 50s] *** time.ok Sun Apr 5 08:13:50 2015
|
|
[ 50s] --- _time Wed May 4 05:51:05 2016
|
|
[ 50s] ***************
|
|
[ 50s] *** 1,3 ****
|
|
[ 50s] ! gettimeofday - systime = 0
|
|
[ 50s] sleep(1.3) = 0
|
|
[ 50s] gettimeofday - systime = 0
|
|
[ 50s] --- 1,3 ----
|
|
[ 50s] ! gettimeofday - systime = 1
|
|
[ 50s] sleep(1.3) = 0
|
|
[ 50s] gettimeofday - systime = 0
|
|
[ 50s] make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/gawk-4.1.3/test'
|
|
[ 50s] Makefile:1583: recipe for target 'check' failed
|
|
[ 50s] make[1]: *** [check] Error 1
|
|
===
|
|
|
|
Signed-off-by: Michel Normand <normand@linux.vnet.ibm.com>
|
|
---
|
|
test/Makefile.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: gawk-4.1.3/test/Makefile.in
|
|
===================================================================
|
|
--- gawk-4.1.3.orig/test/Makefile.in
|
|
+++ gawk-4.1.3/test/Makefile.in
|
|
@@ -3921,7 +3921,7 @@ rwarray:
|
|
time:
|
|
@echo $@
|
|
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
|
|
- @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
|
|
+ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ || { echo "WARNING ignore diff:"; $(CMP) "$(srcdir)"/$@.ok _$@; rm -f _$@; }
|
|
|
|
# end of file Maketests
|
|
|