Commit 2fb20b40 authored by Zolnierczuk, Piotr's avatar Zolnierczuk, Piotr
Browse files

small bug in runtests script

parent 3fc9258b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
#!/bin/sh
#!/bin/bash

DIR=`dirname $0`
PWD=`pwd`
@@ -8,7 +8,7 @@ LOGFILE=runtest.log
rm -f ${LOGFILE}

for tf in $*; do
	echo "### running test ${tf}\t\c";
	echo -ne "### running test ${tf}\t\c";
	./${tf} >> ${LOGFILE}
	res=$?
	if [[ $res -ne 0 ]]; then