From 8b7e7a04d6efb70339ba02d5c2b1a532308bd0f2 Mon Sep 17 00:00:00 2001 From: Nicolas Lacasse Date: Tue, 20 Aug 2019 16:57:57 -0700 Subject: [PATCH] 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 --- test/runtimes/runtimes_test.go | 2 -- 1 file changed, 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)