diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-11-14 09:33:44 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-11-14 09:33:44 +0200 |
commit | 0ed67a4f4f043acc08e3982a2648e3082e1f245a (patch) | |
tree | 9f67347aa1fa796b655b2984153b6fd94eeb2b0f /test/iolint.awk | |
parent | e7468425dea5b5bc8bfb89158f5ad52b9789629e (diff) | |
download | egawk-0ed67a4f4f043acc08e3982a2648e3082e1f245a.tar.gz egawk-0ed67a4f4f043acc08e3982a2648e3082e1f245a.tar.bz2 egawk-0ed67a4f4f043acc08e3982a2648e3082e1f245a.zip |
Disable racy test in test/iolint.awk.
Diffstat (limited to 'test/iolint.awk')
-rw-r--r-- | test/iolint.awk | 13 |
1 files changed, 8 insertions, 5 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 |