Last change
on this file since 103996 was 103996, checked in by vboxsync, 13 months ago |
Additions/3D/mesa: export mesa-24.0.2 to OSE. bugref:10606
|
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
834 bytes
|
Line | |
---|
1 | #!/usr/bin/env bash
|
---|
2 | # shellcheck disable=SC2086 # we want word splitting
|
---|
3 |
|
---|
4 | if [[ -z "$STRACEDIR" ]]; then
|
---|
5 | STRACEDIR=meson-logs/strace/$(for i in "$@"; do basename -z -- $i; echo -n _; done).$$
|
---|
6 | fi
|
---|
7 |
|
---|
8 | mkdir -p $STRACEDIR
|
---|
9 |
|
---|
10 | # If the test times out, meson sends SIGTERM to this process.
|
---|
11 | # Simply exec'ing "time" would result in no output from that in this case.
|
---|
12 | # Instead, we need to run "time" in the background, catch the signals and
|
---|
13 | # propagate them to the actual test process.
|
---|
14 |
|
---|
15 | /usr/bin/time -v strace -ff -tt -T -o $STRACEDIR/log "$@" &
|
---|
16 | TIMEPID=$!
|
---|
17 | STRACEPID=$(ps --ppid $TIMEPID -o pid=)
|
---|
18 | TESTPID=$(ps --ppid $STRACEPID -o pid=)
|
---|
19 |
|
---|
20 | if test "x$TESTPID" != x; then
|
---|
21 | trap 'kill -TERM $TESTPID; wait $TIMEPID; exit $?' TERM
|
---|
22 | fi
|
---|
23 |
|
---|
24 | wait $TIMEPID
|
---|
25 | EXITCODE=$?
|
---|
26 |
|
---|
27 | # Only keep strace logs if the test timed out
|
---|
28 | rm -rf $STRACEDIR &
|
---|
29 |
|
---|
30 | exit $EXITCODE
|
---|
Note:
See
TracBrowser
for help on using the repository browser.