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/runner/main.go | |
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/runner/main.go')
-rw-r--r-- | test/runtimes/runner/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtimes/runner/main.go b/test/runtimes/runner/main.go index e230912c9..948e7cf9c 100644 --- a/test/runtimes/runner/main.go +++ b/test/runtimes/runner/main.go @@ -40,7 +40,7 @@ var ( ) // Wait time for each test to run. -const timeout = 45 * time.Minute +const timeout = 90 * time.Minute func main() { flag.Parse() |