diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-06-01 15:38:23 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-06-01 15:38:23 +0100 |
commit | b09f34b80f7bfe7e596d8cae6bdc44eb2d3e6526 (patch) | |
tree | 7e567c4793632821631964403f8dec7f43d30bc9 /tests | |
parent | b9842a615366b47cbd0739d97f2dd2679dfbb3a8 (diff) | |
download | coreutils-b09f34b80f7bfe7e596d8cae6bdc44eb2d3e6526.tar.xz |
tests: fix false failure on loaded systems
* tests/misc/uniq-perf.sh: Use our standard 10s timeout,
which is sufficient to trigger the failure and also
avoids a false failure on slow/loaded systems.
Noticed at http://hydra.nixos.org/build/22766288
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/uniq-perf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/uniq-perf.sh b/tests/misc/uniq-perf.sh index bd113ace3..b8bac973e 100755 --- a/tests/misc/uniq-perf.sh +++ b/tests/misc/uniq-perf.sh @@ -20,6 +20,6 @@ print_ver_ uniq seq 100 > in || fail=1 -timeout 1 uniq -f 10000000000 in || fail=1 +timeout 10 uniq -f 10000000000 in || fail=1 Exit $fail |