aboutsummaryrefslogtreecommitdiffstats
path: root/test/timeout.awk
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2019-02-17 10:14:09 -0500
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2019-02-17 10:14:09 -0500
commit708196dcbb974209f586a749ef6045c8c3039e1c (patch)
treef2ae4c14d7ef078372e0abeff02e3daa56002100 /test/timeout.awk
parent028c972a224ea2d6e1e7ed61f12553e95e695e1d (diff)
downloadegawk-708196dcbb974209f586a749ef6045c8c3039e1c.tar.gz
egawk-708196dcbb974209f586a749ef6045c8c3039e1c.tar.bz2
egawk-708196dcbb974209f586a749ef6045c8c3039e1c.zip
Tweak timeout test to reduce likelihood of failure.
Diffstat (limited to 'test/timeout.awk')
-rw-r--r--test/timeout.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/timeout.awk b/test/timeout.awk
index ccf4537d..ba6d87b2 100644
--- a/test/timeout.awk
+++ b/test/timeout.awk
@@ -2,7 +2,7 @@ BEGIN {
cmd = "echo hello; sleep 1; echo goodbye"
print "With timeouts"
- PROCINFO[cmd, "READ_TIMEOUT"] = 300
+ PROCINFO[cmd, "READ_TIMEOUT"] = 400
while ((rc = (cmd | getline x)) > 0)
print x
if (rc < 0)