X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Frun-tests.sh;h=cf98211753733e4b46035b62ccd3f7aa12b89b8c;hb=b9567b6d461661700c60c63dbc35f37612a15a8e;hp=e894fecb63d145e5b0ab607958375258baf8f311;hpb=7a3c54f031bc0ead921d02db99065db1c101a5a8;p=ardour.git diff --git a/libs/ardour/run-tests.sh b/libs/ardour/run-tests.sh index e894fecb63..cf98211753 100755 --- a/libs/ardour/run-tests.sh +++ b/libs/ardour/run-tests.sh @@ -2,7 +2,10 @@ # # Run libardour test suite. # -. test-env.sh + +TOP=`dirname "$0"`/../.. +. $TOP/build/gtk2_ardour/ardev_common_waf.sh +ARDOUR_LIBS_DIR=$TOP/build/libs/ardour if [ "$1" == "--single" ] || [ "$2" == "--single" ]; then if [ "$1" == "--single" ]; then @@ -12,7 +15,7 @@ if [ "$1" == "--single" ] || [ "$2" == "--single" ]; then else TESTS='test_*' fi - for test_program in `find libs/ardour -name "$TESTS" -type f -perm /u+x`; + for test_program in `find $ARDOUR_LIBS_DIR -name "$TESTS" -type f -perm /u+x`; do echo "Running $test_program..." if [ "$1" == "--debug" ]; then @@ -25,11 +28,11 @@ if [ "$1" == "--single" ] || [ "$2" == "--single" ]; then done else if [ "$1" == "--debug" ]; then - gdb ./libs/ardour/run-tests + gdb $ARDOUR_LIBS_DIR/run-tests elif [ "$1" == "--valgrind" ]; then - valgrind ./libs/ardour/run-tests + valgrind $ARDOUR_LIBS_DIR/run-tests else - ./libs/ardour/run-tests $* + $ARDOUR_LIBS_DIR/run-tests $* fi fi