Cleanup the shell scripts used to run tests on Windows
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
. ./conf.sh
|
||||
|
||||
PARALLELS=`echo $PARALLELDIRS | sed "s|\([^ ][^ ]*\)|test-\1|g;" | tr _ -`
|
||||
PARALLELS=$(echo "$PARALLELDIRS" | sed "s|\([^ ][^ ]*\)|test-\1|g;" | tr _ - | tr "\n" " ")
|
||||
|
||||
echo ".PHONY: $PARALLELS"
|
||||
echo
|
||||
@@ -28,7 +28,7 @@ echo "test check: $PARALLELS"
|
||||
port=${STARTPORT:-5000}
|
||||
for directory in $PARALLELDIRS ; do
|
||||
echo
|
||||
echo "test-`echo $directory | tr _ -`: check_interfaces"
|
||||
echo " @${SHELL} ./run.sh -p $port $directory 2>&1 | tee test.output.$directory"
|
||||
port=`expr $port + 100`
|
||||
echo "test-$(echo "$directory" | tr _ -): check_interfaces"
|
||||
echo " @${SHELL} ./run.sh -r -p $port $directory 2>&1 | tee test.output.$directory"
|
||||
port=$((port+100))
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user