diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2020-07-31 15:59:28 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-31 16:01:36 -0700 |
commit | 12a6657d9c037b4359923069c67377d516b15194 (patch) | |
tree | 84091020bfeb61db5d90420e18b3b2050bfc60e2 /test/runtimes/BUILD | |
parent | ade4ff95fc4e0e0ad594ff411658949f13745288 (diff) |
[runtime tests] Enhance java runtime test.
- Added a bunch of helpful options which help in speeding up the test and
providing useful output.
- Unexcluded passing tests and updated bugs. Excluded tests which were failing.
- Increased the batch size for java tests so that we can take advantage of
the shared JVMs.
The running time of the tests decreased from 3+ hours (I don't know the exact
running time because this test has always timed out after 3 hours) to 1 hour
15 minutes. We can reliably run this a CI kokoro job.
PiperOrigin-RevId: 324301503
Diffstat (limited to 'test/runtimes/BUILD')
-rw-r--r-- | test/runtimes/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/runtimes/BUILD b/test/runtimes/BUILD index 1728161ce..3be123d94 100644 --- a/test/runtimes/BUILD +++ b/test/runtimes/BUILD @@ -11,6 +11,7 @@ runtime_test( runtime_test( name = "java11", + batch = 100, exclude_file = "exclude_java11.csv", lang = "java", shard_count = 20, |