From eec16054732b401c8ed3b46a332d0aa154aea13e Mon Sep 17 00:00:00 2001 From: tholenst Date: Fri, 15 May 2020 06:41:48 -0700 Subject: [PATCH 1/2] Run the manual tests in continuous-release in the same way as in continuous.sh. PiperOrigin-RevId: 311720564 (cherry picked from commit c04d775b816cab0eb559496be963afa54430f0ca) --- kokoro/continuous-release.sh | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/kokoro/continuous-release.sh b/kokoro/continuous-release.sh index 1838f91ba0..392643ded7 100755 --- a/kokoro/continuous-release.sh +++ b/kokoro/continuous-release.sh @@ -27,9 +27,12 @@ cd git*/tink-release source ./kokoro/run_tests.sh # Run all manual tests. -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 +( + cd java_src + 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 +) From 423274719b8eb375186da16c17859c73ddadea07 Mon Sep 17 00:00:00 2001 From: tholenst Date: Fri, 15 May 2020 06:41:48 -0700 Subject: [PATCH 2/2] Run the manual tests in continuous-release in the same way as in continuous.sh. PiperOrigin-RevId: 311720564 (cherry picked from commit c04d775b816cab0eb559496be963afa54430f0ca)