2015-08-31 22:57:32 +08:00
|
|
|
#!/bin/sh
|
|
|
|
rm results.txt
|
|
|
|
rm -rf results
|
|
|
|
for conf in `ls -v *.conf`; do
|
|
|
|
echo $conf
|
|
|
|
outdir=results/$(basename $conf .conf)
|
|
|
|
app=$(basename $conf .conf)
|
2015-12-31 03:41:56 +08:00
|
|
|
make BOARD=arduino_101 CONF_FILE=$conf O=${outdir}
|
2015-08-31 22:57:32 +08:00
|
|
|
${ZEPHYR_BASE}/scripts/sanitycheck -z ${outdir}/${app}.elf >> results.txt
|
|
|
|
done
|
|
|
|
|