diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2015-03-04 13:32:39 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2015-03-04 13:32:39 +0000 |
commit | bfd45554e6d40e92f01057637adabb3dc68d8425 (patch) | |
tree | 05988261cfb6447ed04087fd80df735197f4aada /tests | |
parent | 3e8c6a5be1fec8b648ae4caea1dfb2ceb16a90a9 (diff) |
purged bashisms
svn path=/trunk/externals/iem/iemmatrix/; revision=17429
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.sh b/tests/runtests.sh index 30931a4..5251147 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -12,7 +12,7 @@ ls -1 */*.pd | sed 's/\.pd/;/' > $RUNTESTS_TXT IEMMATRIX="-lib ../iemmatrix -path ../abs/" -function run_nogui() { +run_nogui() { pd $IEMMATRIX -nogui runtests_nogui.pd > ${RUNTESTS_LOG}.$$ 2>&1 NUMTESTS=`grep -c . $RUNTESTS_TXT` echo "regression-test: ${NUMTESTS} tests total" >> ${RUNTESTS_LOG}.$$ @@ -26,7 +26,7 @@ function run_nogui() { echo } -function run_withgui() { +run_withgui() { pd $IEMMATRIX -stderr runtests.pd 2>&1 | tee ${RUNTESTS_LOG} } |