handle sidechain input changes
[ardour.git] / libs / ardour / run-profiling.sh
index 3f2148fbed81dc97a92141000ffe7a7717ce4c15..541c7254ceab31790d74e45ef0c928de6a14ba75 100644 (file)
@@ -3,29 +3,30 @@
 # Run libardour profiling tests.
 #
 
-if [ ! -f './tempo.cc' ]; then
-    echo "This script must be run from within the libs/ardour directory";
-    exit 1;
+if [ "$1" == "" ]; then
+   echo "Syntax: run-profiling.sh [flag] <test> [<args>]"
+   exit 1;
 fi
 
-srcdir=`pwd`
-cd ../../build
-
-libs='libs'
-
-export LD_LIBRARY_PATH=$libs/audiographer:$libs/vamp-sdk:$libs/surfaces:$libs/surfaces/control_protocol:$libs/ardour:$libs/midi++2:$libs/pbd:$libs/rubberband:$libs/soundtouch:$libs/gtkmm2ext:$libs/appleutility:$libs/taglib:$libs/evoral:$libs/evoral/src/libsmf:$libs/timecode:/usr/local/lib:/usr/local/lib64:$LD_LIBRARY_PATH
-
-export ARDOUR_PANNER_PATH=$libs/panners/2in2out:$libs/panners/1in2out:$libs/panners/vbap
+. test-env.sh
 
 export LD_PRELOAD=/home/carl/src/libfakejack/libjack.so
-session='32tracks'
+# session='32tracks'
+
+p=$1
+if [ "$p" == "--debug" -o "$p" == "--valgrind" -o "$p" == "--callgrind" ]; then
+  f=$p
+  p=$2
+  shift 1
+fi
+shift 1
 
-if [ "$1" == "--debug" ]; then
-        gdb --args ./libs/ardour/run-profiling $session
-elif [ "$1" == "--valgrind" ]; then
-        valgrind ./libs/ardour/run-profiling $session
-elif [ "$1" == "--callgrind" ]; then
-        valgrind --tool=callgrind ./libs/ardour/run-profiling $session
+if [ "$f" == "--debug" ]; then
+        gdb --args ./libs/ardour/$p $*
+elif [ "$f" == "--valgrind" ]; then
+        valgrind ./libs/ardour/$p $*
+elif [ "$f" == "--callgrind" ]; then
+        valgrind --tool=callgrind ./libs/ardour/$p $*
 else
-        ./libs/ardour/run-profiling $session
+        ./libs/ardour/$p $*
 fi