diff options
Diffstat (limited to 'android/paths_test.go')
-rw-r--r-- | android/paths_test.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/android/paths_test.go b/android/paths_test.go index 03e1410f1..d099f6502 100644 --- a/android/paths_test.go +++ b/android/paths_test.go @@ -110,7 +110,6 @@ var validatePathTestCases = append(commonValidatePathTestCases, []strsTestCase{ }...) func TestValidateSafePath(t *testing.T) { - t.Parallel() for _, testCase := range validateSafePathTestCases { t.Run(strings.Join(testCase.in, ","), func(t *testing.T) { ctx := &configErrorWrapper{} @@ -124,7 +123,6 @@ func TestValidateSafePath(t *testing.T) { } func TestValidatePath(t *testing.T) { - t.Parallel() for _, testCase := range validatePathTestCases { t.Run(strings.Join(testCase.in, ","), func(t *testing.T) { ctx := &configErrorWrapper{} @@ -138,7 +136,6 @@ func TestValidatePath(t *testing.T) { } func TestOptionalPath(t *testing.T) { - t.Parallel() var path OptionalPath checkInvalidOptionalPath(t, path) @@ -256,7 +253,6 @@ func pathTestConfig(buildDir string) Config { } func TestPathForModuleInstall(t *testing.T) { - t.Parallel() testConfig := pathTestConfig("") hostTarget := Target{Os: Linux, Arch: Arch{ArchType: X86}} @@ -661,7 +657,6 @@ func TestPathForModuleInstall(t *testing.T) { } func TestDirectorySortedPaths(t *testing.T) { - t.Parallel() config := TestConfig("out", nil, "", map[string][]byte{ "Android.bp": nil, "a.txt": nil, @@ -744,7 +739,6 @@ func TestDirectorySortedPaths(t *testing.T) { } func TestMaybeRel(t *testing.T) { - t.Parallel() testCases := []struct { name string base string @@ -802,7 +796,6 @@ func TestMaybeRel(t *testing.T) { } func TestPathForSource(t *testing.T) { - t.Parallel() testCases := []struct { name string buildDir string @@ -1035,7 +1028,6 @@ func testPathForModuleSrc(t *testing.T, buildDir string, tests []pathForModuleSr } func TestPathsForModuleSrc(t *testing.T) { - t.Parallel() tests := []pathForModuleSrcTestCase{ { name: "path", @@ -1131,7 +1123,6 @@ func TestPathsForModuleSrc(t *testing.T) { } func TestPathForModuleSrc(t *testing.T) { - t.Parallel() tests := []pathForModuleSrcTestCase{ { name: "path", @@ -1199,7 +1190,6 @@ func TestPathForModuleSrc(t *testing.T) { } func TestPathsForModuleSrc_AllowMissingDependencies(t *testing.T) { - t.Parallel() bp := ` test { name: "foo", |