nes-proj/tools/cooja/contiki_tests/RUN_ALL

13 lines
197 B
Plaintext
Raw Normal View History

2008-04-22 14:29:05 +00:00
#!/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