diff options
author | Karen Arutyunov <karen@swart.lan> | 2021-03-27 22:02:36 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@swart.lan> | 2021-03-27 22:02:36 +0300 |
commit | cb6f5262b51cd9ceb625d6919c80d0967a27cc03 (patch) | |
tree | b50f49a3b67e9c7a136fc36e739c8cca80cf73ef | |
parent | 95c579df686f115c0fd3697f2723fa73476c4584 (diff) |
Fix occasionally failing timeout builtin test
-rw-r--r-- | tests/builtin/timeout.testscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/builtin/timeout.testscript b/tests/builtin/timeout.testscript index de81c6c..b8eddc3 100644 --- a/tests/builtin/timeout.testscript +++ b/tests/builtin/timeout.testscript @@ -6,7 +6,7 @@ { : expired : - $* -s 3 'cat' <'test' | $* -t 1 'cat' >=f 2>'timeout expired' != 0 + $* -s 5 'cat' <'test' | $* -t 1 'cat' >=f 2>'timeout expired' != 0 : not-expired : @@ -18,7 +18,7 @@ { : expired : - $* -s 3 'cat' <'test' | $* -t 1 'roundtrip' >=f 2>'timeout expired' != 0 + $* -s 5 'cat' <'test' | $* -t 1 'roundtrip' >=f 2>'timeout expired' != 0 : not-expired : |