From 405af0785923a6e5042f9f69f41ebc46c713537a Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Sat, 10 Oct 2020 01:30:30 +0000 Subject: Revert "Make lots of tests run in parallel" This reverts commit 323dc60712491c71ccdc5363c42df61f0a192487. Reason for revert: Possible cause of test instability Bug: 170513220 Test: soong tests Change-Id: Iee168e9fbb4210569e6cffcc23e60d111403abb8 --- sdk/sdk_test.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'sdk/sdk_test.go') diff --git a/sdk/sdk_test.go b/sdk/sdk_test.go index a6afdc5be..2e6c62a9b 100644 --- a/sdk/sdk_test.go +++ b/sdk/sdk_test.go @@ -35,7 +35,6 @@ func TestMain(m *testing.M) { } func TestDepNotInRequiredSdks(t *testing.T) { - t.Parallel() testSdkError(t, `module "myjavalib".*depends on "otherlib".*that isn't part of the required SDKs:.*`, ` sdk { name: "mysdk", @@ -96,7 +95,6 @@ func TestDepNotInRequiredSdks(t *testing.T) { // Ensure that prebuilt modules have the same effective visibility as the source // modules. func TestSnapshotVisibility(t *testing.T) { - t.Parallel() packageBp := ` package { default_visibility: ["//other/foo"], @@ -304,7 +302,6 @@ func TestPrebuiltVisibilityProperty_AddPrivate(t *testing.T) { } func TestSDkInstall(t *testing.T) { - t.Parallel() sdk := ` sdk { name: "mysdk", @@ -349,7 +346,6 @@ func (p *testPropertiesStruct) String() string { var _ propertiesContainer = (*testPropertiesStruct)(nil) func TestCommonValueOptimization(t *testing.T) { - t.Parallel() common := &testPropertiesStruct{name: "common"} structs := []propertiesContainer{ &testPropertiesStruct{ @@ -447,7 +443,6 @@ func TestCommonValueOptimization(t *testing.T) { } func TestCommonValueOptimization_InvalidArchSpecificVariants(t *testing.T) { - t.Parallel() common := &testPropertiesStruct{name: "common"} structs := []propertiesContainer{ &testPropertiesStruct{ -- cgit v1.2.3-59-g8ed1b