osd-contiki/tools/cooja/contiki_tests/RUN_ALL
2008-04-22 14:29:05 +00:00

13 lines
197 B
Bash

#!/usr/bin/env bash
echo "Running tests"
rm *.log
for myfile in ./*.csc
do
TEST=`basename $myfile .csc`
echo Starting test: $TEST
java -jar ../dist/cooja.jar -nogui -test=$TEST
done