mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-01-11 03:29:51 +00:00
13 lines
197 B
Bash
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 |