Files
atomthreads/tests/commit-tests.sh
2015-02-22 19:44:03 +00:00

22 lines
306 B
Bash
Executable File

#!/bin/bash
# Quit on any error
set -e
# Start at top-level directory
cd `dirname $0`/..
# Build avr and run tests
cd ports/avr
make clean
make PART=atmega128
make PART=atmega128 simtests
cd ../..
# Build qemu-arm and run tests
cd ports/arm/platforms/qemu_integratorcp
make clean
make
make qemutests