You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
459 B
18 lines
459 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# If the test times out, meson sends SIGTERM to this process.
|
||
|
# Simply exec'ing "time" would result in no output from that in this case.
|
||
|
# Instead, we need to run "time" in the background, catch the signals and
|
||
|
# propagate them to the actual test process.
|
||
|
|
||
|
/usr/bin/time -v "$@" &
|
||
|
TIMEPID=$!
|
||
|
TESTPID=$(ps --ppid $TIMEPID -o pid=)
|
||
|
|
||
|
if test "x$TESTPID" != x; then
|
||
|
trap 'kill -TERM $TESTPID; wait $TIMEPID; exit $?' TERM
|
||
|
fi
|
||
|
|
||
|
wait $TIMEPID
|
||
|
exit $?
|