aboutsummaryrefslogtreecommitdiffstats
path: root/test/pipeio3.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-11-29 14:00:51 +0200
committerArnold D. Robbins <arnold@skeeve.com>2013-11-29 14:00:51 +0200
commit80e83ca401acbc7255c61d72be52a47bf23d3139 (patch)
tree754793d59c726ae28b1ab258017a25f14dfb5cea /test/pipeio3.awk
parent29c8a4a896c4de85f904bc3344a2fefe0b2f693d (diff)
downloadegawk-80e83ca401acbc7255c61d72be52a47bf23d3139.tar.gz
egawk-80e83ca401acbc7255c61d72be52a47bf23d3139.tar.bz2
egawk-80e83ca401acbc7255c61d72be52a47bf23d3139.zip
Remove pipeio3 test.
Diffstat (limited to 'test/pipeio3.awk')
-rw-r--r--test/pipeio3.awk15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/pipeio3.awk b/test/pipeio3.awk
deleted file mode 100644
index a1cd3743..00000000
--- a/test/pipeio3.awk
+++ /dev/null
@@ -1,15 +0,0 @@
-BEGIN {
- outputCommand = "cart"
- inputCommand = "ls"
-
- print "doing first print" > "/dev/stderr"
- print "hello" | outputCommand
-
- print "doing first getline" > "/dev/stderr"
- inputCommand | getline
-
- print "doing second print" > "/dev/stderr"
- print "hello" | outputCommand
-
- print "made it here" > "/dev/stderr"
-}