From 723f3ce6c8927683e96cd7a4a02b59606a14eafc Mon Sep 17 00:00:00 2001 From: Daniel Zou Date: Mon, 6 Dec 2021 11:14:51 -0500 Subject: [PATCH] fix(java): add -ntp flag to native image testing command (#1299) --- synthtool/gcp/templates/java_library/.kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthtool/gcp/templates/java_library/.kokoro/build.sh b/synthtool/gcp/templates/java_library/.kokoro/build.sh index 3dce90229..2b1f524fd 100755 --- a/synthtool/gcp/templates/java_library/.kokoro/build.sh +++ b/synthtool/gcp/templates/java_library/.kokoro/build.sh @@ -71,7 +71,7 @@ integration) ;; graalvm) # Run Unit and Integration Tests with Native Image - mvn test -Pnative -Penable-integration-tests + mvn -ntp -Pnative -Penable-integration-tests test RETURN_CODE=$? ;; samples)