I think the last check in timeout-parameters needs the same treatment? cheers, Pádraig.
commit 05327326c6f66650c685e26b777140782d300233 Author: Pádraig Brady <p...@draigbrady.com> Date: Fri Nov 13 22:52:14 2009 +0000 tests: avoid a spurious failure on a loaded system * tests/misc/timeout-parameters: This test would fail due to the 1-second timeout expiring before a command of "no_such" could be exec'd and fail. Increase to 10 seconds. diff --git a/tests/misc/timeout-parameters b/tests/misc/timeout-parameters index f41c837..a39c4ca 100755 --- a/tests/misc/timeout-parameters +++ b/tests/misc/timeout-parameters @@ -56,7 +56,7 @@ timeout 10 . test $? = 126 || fail=1 # no such command -timeout 1 no_such +timeout 10 no_such test $? = 127 || fail=1 Exit $fail