Skip to content

Commit

Permalink
Fix build target specifications within the continuous test script.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 291069369
  • Loading branch information
chuckx authored and copybara-github committed Jan 23, 2020
1 parent e46d255 commit 42c168c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
10 changes: 5 additions & 5 deletions kokoro/continuous-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ source ./kokoro/run_tests.sh

# Run all manual tests.
time bazel test \
--strategy=TestRunner=standalone \
--test_timeout 10000 \
--test_output=all \
//java:src/test/java/com/google/crypto/tink/subtle/AesGcmJceTest \
//java:src/test/java/com/google/crypto/tink/subtle/AesGcmHkdfStreamingTest
--strategy=TestRunner=standalone \
--test_timeout 10000 \
--test_output=all \
//java:src/test/java/com/google/crypto/tink/subtle/AesGcmJceTest \
//java:src/test/java/com/google/crypto/tink/subtle/AesGcmHkdfStreamingTest
15 changes: 9 additions & 6 deletions kokoro/continuous.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ source ./kokoro/run_tests.sh
go get github.com/google/tink/go/...

# Run all manual tests.
time bazel test \
--strategy=TestRunner=standalone \
--test_timeout 10000 \
--test_output=all \
//java:src/test/java/com/google/crypto/tink/subtle/AesGcmJceTest \
//java:src/test/java/com/google/crypto/tink/subtle/AesGcmHkdfStreamingTest
(
cd java
time bazel test \
--strategy=TestRunner=standalone \
--test_timeout 10000 \
--test_output=all \
//:src/test/java/com/google/crypto/tink/subtle/AesGcmJceTest \
//:src/test/java/com/google/crypto/tink/subtle/AesGcmHkdfStreamingTest
)

# On Linux, run all Maven tests and upload snapshot jars
if [[ $PLATFORM == 'linux' ]]; then
Expand Down

0 comments on commit 42c168c

Please sign in to comment.