mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
13 lines
197 B
Plaintext
13 lines
197 B
Plaintext
|
#!/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
|