bitbake-runtask-strace: simple shell script to wrap tasks in a strace call

Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
Joshua Lock 2010-10-08 18:20:44 +01:00 committed by Saul Wold
parent b7ce75703a
commit 9545130576
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/bin/bash
STRACE=`which strace`
if [ ! -x "$STRACE" ]; then
bitbake-runtask $1 $2 $3 $4
else
strace -f -o $TRACE_LOGFILE-$3.log -e trace=open,execve bitbake-runtask $1 $2 $3 $4
fi