diff --git a/.github/scripts/run-tests-cpp.sh b/.github/scripts/run-tests-cpp.sh index e95dc8922..6fad9df27 100755 --- a/.github/scripts/run-tests-cpp.sh +++ b/.github/scripts/run-tests-cpp.sh @@ -2,6 +2,8 @@ set -euo pipefail +cd runtime-testsuite/ + if [ $GROUP == "LEXER" ]; then mvn -q -Dgroups="org.antlr.v4.test.runtime.category.LexerTests" -Dtest=cpp.* test elif [ $GROUP == "PARSER" ]; then @@ -11,4 +13,3 @@ elif [ $GROUP == "RECURSION" ]; then else mvn -q -Dtest=cpp.* test fi -