1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-14 19:32:10 +02:00

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
This commit is contained in:
Pádraig Brady
2015-06-01 15:38:23 +01:00
parent b9842a6153
commit b09f34b80f

View File

@@ -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