diff options
Diffstat (limited to 'test/timeout.awk')
-rw-r--r-- | test/timeout.awk | 2 |
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) |