2016-11-28 00:56:14 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-11-16 01:23:17 +08:00
|
|
|
set -euo pipefail
|
|
|
|
|
2017-06-27 01:47:01 +08:00
|
|
|
if [ $GROUP == "LEXER" ]; then
|
|
|
|
mvn -q -Dgroups="org.antlr.v4.test.runtime.category.LexerTests" -Dtest=cpp.* test
|
|
|
|
elif [ $GROUP == "PARSER" ]; then
|
|
|
|
mvn -q -Dgroups="org.antlr.v4.test.runtime.category.ParserTests" -Dtest=cpp.* test
|
|
|
|
elif [ $GROUP == "RECURSION" ]; then
|
|
|
|
mvn -q -Dgroups="org.antlr.v4.test.runtime.category.LeftRecursionTests" -Dtest=cpp.* test
|
|
|
|
else
|
|
|
|
mvn -q -Dtest=cpp.* test
|
2017-06-27 00:50:49 +08:00
|
|
|
fi
|
|
|
|
|