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
This commit is contained in:
Nicolas Lacasse 2019-08-20 16:57:57 -07:00 committed by gVisor bot
parent 6c3a242143
commit 8b7e7a04d6
1 changed files with 0 additions and 2 deletions

View File

@ -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)