28 lines
728 B
Bash
28 lines
728 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
pushd runtime/Swift
|
||
|
echo "running native tests..."
|
||
|
./boot.py --test
|
||
|
rc=$?
|
||
|
if [ $rc != 0 ]; then
|
||
|
echo "failed running native tests"
|
||
|
fi
|
||
|
popd
|
||
|
|
||
|
if [ $rc == 0 ]; then
|
||
|
pushd runtime-testsuite
|
||
|
echo "running maven tests..."
|
||
|
if [ $GROUP == "LEXER" ]; then
|
||
|
mvn -q -Dgroups="org.antlr.v4.test.runtime.category.LexerTests" -Dtest=swift.* test
|
||
|
elif [ $GROUP == "PARSER" ]; then
|
||
|
mvn -q -Dgroups="org.antlr.v4.test.runtime.category.ParserTests" -Dtest=swift.* test
|
||
|
elif [ $GROUP == "RECURSION" ]; then
|
||
|
mvn -q -Dgroups="org.antlr.v4.test.runtime.category.LeftRecursionTests" -Dtest=swift.* test
|
||
|
else
|
||
|
mvn -q -Dtest=swift.* test
|
||
|
fi
|
||
|
popd
|
||
|
fi
|