Update of /cvsroot/pure-data/externals/zexy/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2156
Modified Files: runtests.sh runtests.txt Log Message: allow to set pd-binary with ${PD}
Index: runtests.txt =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/tests/runtests.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** runtests.txt 28 Jun 2006 15:53:01 -0000 1.5 --- runtests.txt 28 Sep 2006 10:15:10 -0000 1.6 *************** *** 13,18 **** help-msg/blockswap~; help-msg/date; - help-msg/demultiplex~; help-msg/demultiplex; help-msg/dfreq~; help-msg/dirac~; --- 13,18 ---- help-msg/blockswap~; help-msg/date; help-msg/demultiplex; + help-msg/demultiplex~; help-msg/dfreq~; help-msg/dirac~; *************** *** 34,39 **** help-msg/msgfile; help-msg/multiline~; - help-msg/multiplex~; help-msg/multiplex; help-msg/niagara; help-msg/noish~; --- 34,39 ---- help-msg/msgfile; help-msg/multiline~; help-msg/multiplex; + help-msg/multiplex~; help-msg/niagara; help-msg/noish~;
Index: runtests.sh =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/tests/runtests.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** runtests.sh 20 Jun 2006 08:55:19 -0000 1.4 --- runtests.sh 28 Sep 2006 10:15:10 -0000 1.5 *************** *** 5,8 **** --- 5,13 ---- ## if it is not there, assume it is split into externals
+ if [ "x${PD}" = "x" ] + then + PD=pd + fi +
#SUFFIX="$$" *************** *** 18,22 ****
function run_nogui() { ! pd ${LIBFLAGS} -nogui runtests_nogui.pd > ${RUNTESTS_LOG} 2>&1 NUMTESTS=`grep -c . ${RUNTESTS_TXT}` echo "regression-test: ${NUMTESTS} tests total" >> ${RUNTESTS_LOG} --- 23,27 ----
function run_nogui() { ! ${PD} ${LIBFLAGS} -nogui runtests_nogui.pd > ${RUNTESTS_LOG} 2>&1 NUMTESTS=`grep -c . ${RUNTESTS_TXT}` echo "regression-test: ${NUMTESTS} tests total" >> ${RUNTESTS_LOG} *************** *** 26,30 ****
function run_withgui() { ! pd ${LIBFLAGS} -stderr runtests.pd > ${RUNTESTS_LOG} 2>&1 }
--- 31,35 ----
function run_withgui() { ! ${PD} ${LIBFLAGS} -stderr runtests.pd > ${RUNTESTS_LOG} 2>&1 }