aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-06-20 08:55:19 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-06-20 08:55:19 +0000
commitc7757acc18b1112801ddea85ba2dfd10bedeb639 (patch)
treeb189d8f44f0a4dd4dcba1da0a1daa2f5b84828c6 /tests
parent2d5898653778cc0115b219a5ded7b6b98fa7a373 (diff)
don't load ../zexy directly but rather try to load "zexy" from ../src or ../ (caveat: this could also load an installed version of zexy)
svn path=/trunk/externals/zexy/; revision=5267
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/runtests.sh b/tests/runtests.sh
index 2dd8a6d..47573c9 100755
--- a/tests/runtests.sh
+++ b/tests/runtests.sh
@@ -1,5 +1,10 @@
#!/bin/sh
+## TODO:
+## find zexy (either in ../src or ../)
+## if it is not there, assume it is split into externals
+
+
#SUFFIX="$$"
SUFFIX=$(date +%y%m%d-%H%M%S)
@@ -8,7 +13,8 @@ RUNTESTS_LOG=log-runtests.${SUFFIX}
ls -1 */*.pd | sed 's/\.pd/;/' > ${RUNTESTS_TXT}
-LIBFLAGS="-path ../src -lib zexy -path ../abs/"
+
+LIBFLAGS="-path ../src:../ -lib zexy -path ../abs/"
function run_nogui() {
pd ${LIBFLAGS} -nogui runtests_nogui.pd > ${RUNTESTS_LOG} 2>&1