aboutsummaryrefslogtreecommitdiffstats
path: root/test/timeout.awk
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2015-01-05 14:12:25 -0500
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2015-01-05 14:12:25 -0500
commit66c827a4607fa11c5c3d26eb8e3a4d63c2b05bef (patch)
tree14f7914416603040114e7062df0199fcc60e6035 /test/timeout.awk
parente81b32fd38fb79595e7773670818f78e9a3e2df2 (diff)
downloadegawk-66c827a4607fa11c5c3d26eb8e3a4d63c2b05bef.tar.gz
egawk-66c827a4607fa11c5c3d26eb8e3a4d63c2b05bef.tar.bz2
egawk-66c827a4607fa11c5c3d26eb8e3a4d63c2b05bef.zip
Add read timeout/retry test.
Diffstat (limited to 'test/timeout.awk')
-rw-r--r--test/timeout.awk26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/timeout.awk b/test/timeout.awk
new file mode 100644
index 00000000..ccf4537d
--- /dev/null
+++ b/test/timeout.awk
@@ -0,0 +1,26 @@
+BEGIN {
+ cmd = "echo hello; sleep 1; echo goodbye"
+
+ print "With timeouts"
+ PROCINFO[cmd, "READ_TIMEOUT"] = 300
+ while ((rc = (cmd | getline x)) > 0)
+ print x
+ if (rc < 0)
+ print rc, (PROCINFO["errno"] != 0), (ERRNO != "")
+ print (close(cmd) != 0)
+
+ PROCINFO[cmd, "RETRY"]
+ print ""
+ print "With timeouts and retries"
+ while (((rc = (cmd | getline x)) > 0) || (rc == -2)) {
+ if (rc > 0) {
+ print x
+ n = 0
+ }
+ else
+ print ++n, "timed out; trying again"
+ }
+ if (rc < 0)
+ print rc, (PROCINFO["errno"] != 0), (ERRNO != "")
+ print (close(cmd) != 0)
+}