summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2015-06-01 15:38:23 +0100
committerPádraig Brady <P@draigBrady.com>2015-06-01 15:38:23 +0100
commitb09f34b80f7bfe7e596d8cae6bdc44eb2d3e6526 (patch)
tree7e567c4793632821631964403f8dec7f43d30bc9 /tests
parentb9842a615366b47cbd0739d97f2dd2679dfbb3a8 (diff)
downloadcoreutils-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-xtests/misc/uniq-perf.sh2
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