tests/make: Reduce the timeout for 0102-signal - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit 00bae5c394c9b1d31586ffa1ee2f77a3edcc6f0a
DIR parent 65e5c373ca2fa947a604a1e0ea35843c8c104658
HTML Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date: Tue, 28 Oct 2025 21:21:11 +0100
tests/make: Reduce the timeout for 0102-signal
This timeout never had to be changed, because changing it
was only hiding the actual problem, which was a race condition
due to the incorrect signal handling.
Diffstat:
M tests/make/execute/0102-signal.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/tests/make/execute/0102-signal.sh b/tests/make/execute/0102-signal.sh
@@ -21,7 +21,7 @@ adir:
EOF
pid=$!
-sleep 20 && echo timeout >&2 && kill $$ 2>/dev/null &
+sleep 10 && echo timeout >&2 && kill $$ 2>/dev/null &
timer=$!
while :