This commit is contained in:
Kartik K. Agaram 2016-06-02 13:17:21 -07:00
parent 09db002b8d
commit a6a95dae5b
2 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,7 @@ matrix:
- env: CXX=clang++ START=edit2
- env: CXX=clang++ START=edit3
- env: CXX=clang++ START=edit4
- env: CXX=g++ START=one-off # minimal testing for gcc
script:
- ./test_layers $START $END

View File

@ -14,6 +14,13 @@
# Test all layers for a specific app:
# test_layers app
if [[ $1 == one-off ]]
then
make
./mu_bin test || exit 1
exit 0
fi
# Core layers atop Valgrind
for f in [0-9]*
do