diff options
Diffstat (limited to 'test/iolint.awk')
-rw-r--r-- | test/iolint.awk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/iolint.awk b/test/iolint.awk index b6c8eeb4..3f3bb22f 100644 --- a/test/iolint.awk +++ b/test/iolint.awk @@ -54,13 +54,14 @@ BEGIN { # `%.*s' used for output file and output pipe # `%.*s' used for output file and two-way pipe # `%.*s' used for output pipe and two-way pipe + # Not doing |& due to race condition and signals. sigh exec_cat = "exec cat" print "/bin/cat \"$@\"" > exec_cat print "hello" | exec_cat - print "hello" |& exec_cat - print close(exec_cat) + # print "hello" |& exec_cat print close(exec_cat) print close(exec_cat) + # print close(exec_cat) fflush() # `%.*s' used for input pipe and output pipe |