From 954513057655afe50616f9d206ba69912208b6d4 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 8 Oct 2010 18:20:44 +0100 Subject: bitbake-runtask-strace: simple shell script to wrap tasks in a strace call Signed-off-by: Joshua Lock --- bitbake/bin/bitbake-runtask-strace | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 bitbake/bin/bitbake-runtask-strace (limited to 'bitbake/bin') diff --git a/bitbake/bin/bitbake-runtask-strace b/bitbake/bin/bitbake-runtask-strace new file mode 100755 index 0000000000..1741a84de2 --- /dev/null +++ b/bitbake/bin/bitbake-runtask-strace @@ -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 -- cgit v1.2.3-54-g00ecf