properly handle integer steps in plugin controls
[ardour.git] / libs / ardour / run-profiling.sh
index f490080446fa40bc3beeedb958e6335e389aba76..541c7254ceab31790d74e45ef0c928de6a14ba75 100644 (file)
@@ -3,35 +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
 
-cd ../..
-top=`pwd`
-cd build
+. test-env.sh
 
-libs='libs'
+export LD_PRELOAD=/home/carl/src/libfakejack/libjack.so
+# session='32tracks'
 
-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_CONFIG_PATH=$top:$top/gtk2_ardour:$libs/..:$libs/../gtk2_ardour
-export ARDOUR_PANNER_PATH=$libs/panners/2in2out:$libs/panners/1in2out:$libs/panners/vbap
-export ARDOUR_SURFACES_PATH=$libs/surfaces/osc:$libs/surfaces/generic_midi:$libs/surfaces/tranzport:$libs/surfaces/powermate:$libs/surfaces/mackie
-export ARDOUR_MCP_PATH="../mcp"
-export ARDOUR_DLL_PATH=$libs
-export ARDOUR_DATA_PATH=$top/gtk2_ardour:$top/build/gtk2_ardour:.
-
-# export LD_PRELOAD=/home/carl/src/libfakejack/libjack.so
-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