From: Pádraig Brady
Date: Mon, 1 Jun 2015 14:38:23 +0000 (+0100) Subject: tests: fix false failure on loaded systems X-Git-Tag: v8.24~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b09f34b80f7bfe7e596d8cae6bdc44eb2d3e6526;p=thirdparty%2Fcoreutils.git 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 --- diff --git a/tests/misc/uniq-perf.sh b/tests/misc/uniq-perf.sh index bd113ace38..b8bac973e9 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