diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2019-08-20 16:57:57 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-08-20 16:59:09 -0700 |
commit | 8b7e7a04d6efb70339ba02d5c2b1a532308bd0f2 (patch) | |
tree | ef5c20525e4d6af1a638f9142834dee446b08ca8 /test | |
parent | 6c3a242143dd234e7ef5979a41dfe648cea23d84 (diff) |
Don't run runtime tests in parallel.
We need real sharding, and will let Bazel handle the
parallelization. That is coming soon. Until then, remove
this call to t.Parallel() so that we can run the tests without
eating all CPU.
PiperOrigin-RevId: 264498919
Diffstat (limited to 'test')
-rw-r--r-- | test/runtimes/runtimes_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/runtimes/runtimes_test.go b/test/runtimes/runtimes_test.go index 43dd6f5b7..9421021a1 100644 --- a/test/runtimes/runtimes_test.go +++ b/test/runtimes/runtimes_test.go @@ -49,8 +49,6 @@ func testLang(t *testing.T, lang string) { for _, tc := range tests { tc := tc t.Run(tc, func(t *testing.T) { - t.Parallel() - d := testutil.MakeDocker("gvisor-test") if err := d.Run(img, "--test", tc); err != nil { t.Fatalf("docker test %q failed to run: %v", tc, err) |