Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gawk for openSUSE:Factory checked in at 2021-11-20 02:37:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gawk (Old) and /work/SRC/openSUSE:Factory/.gawk.new.1895 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gawk" Sat Nov 20 02:37:58 2021 rev:48 rq:931421 version:5.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gawk/gawk.changes 2021-11-06 18:13:02.988728966 +0100 +++ /work/SRC/openSUSE:Factory/.gawk.new.1895/gawk.changes 2021-11-20 02:38:00.605003900 +0100 @@ -1,0 +2,6 @@ +Sun Nov 14 17:10:48 UTC 2021 - Andreas Stieger <andreas.stie...@gmx.de> + +- disable racy iolint tests boo#1192521 + add gawk-5.1.1-Disable-racy-test-in-test-iolint.awk.patch + +------------------------------------------------------------------- New: ---- gawk-5.1.1-Disable-racy-test-in-test-iolint.awk.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gawk.spec ++++++ --- /var/tmp/diff_new_pack.TMi9bC/_old 2021-11-20 02:38:01.289001643 +0100 +++ /var/tmp/diff_new_pack.TMi9bC/_new 2021-11-20 02:38:01.293001630 +0100 @@ -27,6 +27,7 @@ Source2: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig Source3: http://savannah.gnu.org/people/viewgpg.php?user_id=80653#/gawk.keyring Source4: gawk.rpmlintrc +Patch0: gawk-5.1.1-Disable-racy-test-in-test-iolint.awk.patch Provides: awk %description ++++++ gawk-5.1.1-Disable-racy-test-in-test-iolint.awk.patch ++++++ >From 0ed67a4f4f043acc08e3982a2648e3082e1f245a Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" <arn...@skeeve.com> Date: Sun, 14 Nov 2021 09:33:44 +0200 Subject: [PATCH] Disable racy test in test/iolint.awk. --- test/iolint.awk | 13 ++++++++----- test/iolint.ok | 6 +----- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/test/iolint.awk b/test/iolint.awk index 257678ed..58fd746f 100644 --- a/test/iolint.awk +++ b/test/iolint.awk @@ -55,12 +55,15 @@ BEGIN { print close("cat") fflush() + # 11/2021: Disable this test since it's a race condition + # and fails intermittently on some systems. + # # `%.*s' used for input pipe and output pipe - "echo hello" | getline junk - print "hello" | "echo hello" - print close("echo hello") - print close("echo hello") - fflush() + # "echo hello" | getline junk + # print "hello" | "echo hello" + # print close("echo hello") + # print close("echo hello") + # fflush() # `%.*s' used for output file and output pipe" BINMODE = 2 diff --git a/test/iolint.ok b/test/iolint.ok index fbf514c2..620a70f3 100644 --- a/test/iolint.ok +++ b/test/iolint.ok @@ -23,11 +23,7 @@ gawk: iolint.awk:53: warning: `cat' used for output file and output pipe 0 hello 0 -gawk: iolint.awk:60: warning: `echo hello' used for input pipe and output pipe -hello -0 -0 -gawk: iolint.awk:68: warning: `cksum' used for output file and output pipe +gawk: iolint.awk:71: warning: `cksum' used for output file and output pipe 3015617425 6 0 0 -- 2.33.1