Failing travis test matrix

This commit is contained in:
2020-11-12 19:01:57 -07:00
parent 670f22ad5a
commit 232f3870e5
14 changed files with 94 additions and 0 deletions

10
test-all.sh Normal file
View File

@@ -0,0 +1,10 @@
#! /bin/bash
TEST_FILES=src/build-scripts/test/*.hxml
for TEST_FILE in $TEST_FILES
do
haxe $TEST_FILE
if [ ! $? -eq 0 ]
then
exit $?
fi
done