Skip to content

Commit e5a70fd

Browse files
committed
CI tests: print start/stop message + send kill
- for better debuggability - -k to avoid hang if UG doesn't exit even after SIGTERM
1 parent d668d96 commit e5a70fd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/scripts/run_scheduled_tests.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,10 @@ while [ $i -lt $test_count ]; do
100100
fi
101101

102102
timeout=5
103-
timeout $timeout $exec $args
103+
echo "Starting: \"timeout $timeout $exec $args\""
104+
timeout -k 10 $timeout $exec $args
104105
rc=$?
106+
echo "Finished: \"timeout $timeout $exec $args\" with RC %rc"
105107

106108
if [ $rc = 124 ]; then
107109
if ! expr -- "$opts" : '.*should_timeout' >/dev/null; then

0 commit comments

Comments
 (0)