diff options
author | 2025-02-05 16:39:18 -0800 | |
---|---|---|
committer | 2025-02-06 23:43:51 +0000 | |
commit | aba8cd956a1f0cca137f6ab02b9791aac9435efd (patch) | |
tree | c5bd44db386b2f00d7e97af41999677e65f22e1b /sdk/cc_sdk_test.go | |
parent | e4762bac43777e5a3f0472ed37342c59bf29d626 (diff) |
Add t.Parallel() to SDK tests
Reduces time to run go test ./sdk from 44 seconds to 22.5 seconds.
Requires moving snapshotTestCustomizations from a map to a struct
with individual fields to avoid concurrent map accesses between
subtests.
Test: go test ./sdk
Change-Id: Id6f451ba9cbace8bc7ea915033a795456b85cf3f
Diffstat (limited to 'sdk/cc_sdk_test.go')
-rw-r--r-- | sdk/cc_sdk_test.go | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sdk/cc_sdk_test.go b/sdk/cc_sdk_test.go index 25839b8a1..939477f61 100644 --- a/sdk/cc_sdk_test.go +++ b/sdk/cc_sdk_test.go @@ -58,6 +58,7 @@ func testSdkWithCc(t *testing.T, bp string) *android.TestResult { // Contains tests for SDK members provided by the cc package. func TestSingleDeviceOsAssumption(t *testing.T) { + t.Parallel() // Mock a module with DeviceSupported() == true. s := &sdk{} android.InitAndroidArchModule(s, android.DeviceSupported, android.MultilibCommon) @@ -72,6 +73,7 @@ func TestSingleDeviceOsAssumption(t *testing.T) { } func TestSdkIsCompileMultilibBoth(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -102,6 +104,7 @@ func TestSdkIsCompileMultilibBoth(t *testing.T) { } func TestSdkCompileMultilibOverride(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -161,6 +164,7 @@ cc_prebuilt_library_shared { // Make sure the sdk can use host specific cc libraries static/shared and both. func TestHostSdkWithCc(t *testing.T) { + t.Parallel() testSdkWithCc(t, ` sdk { name: "mysdk", @@ -184,6 +188,7 @@ func TestHostSdkWithCc(t *testing.T) { // Make sure the sdk can use cc libraries static/shared and both. func TestSdkWithCc(t *testing.T) { + t.Parallel() testSdkWithCc(t, ` sdk { name: "mysdk", @@ -214,6 +219,7 @@ func TestSdkWithCc(t *testing.T) { } func TestSnapshotWithObject(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -268,6 +274,7 @@ cc_prebuilt_object { } func TestSnapshotWithCcDuplicateHeaders(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -305,6 +312,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestSnapshotWithCcExportGeneratedHeaders(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -393,6 +401,7 @@ myinclude/Test.h -> include/myinclude/Test.h // handling is tested with the sanitize clauses (but note there's a lot of // built-in logic in sanitize.go that can affect those flags). func TestSnapshotWithCcSharedLibraryCommonProperties(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -475,6 +484,7 @@ arm64/include/Arm64Test.h -> arm64/include/arm64/include/Arm64Test.h } func TestSnapshotWithCcBinary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { name: "mymodule_exports", @@ -523,6 +533,7 @@ cc_prebuilt_binary { } func TestMultipleHostOsTypesSnapshotWithCcBinary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { name: "myexports", @@ -604,6 +615,7 @@ cc_prebuilt_binary { } func TestSnapshotWithSingleHostOsType(t *testing.T) { + t.Parallel() result := android.GroupFixturePreparers( prepareForSdkTest, ccTestFs.AddToFixture(), @@ -721,6 +733,7 @@ cc_prebuilt_library_shared { // Test that we support the necessary flags for the linker binary, which is // special in several ways. func TestSnapshotWithCcStaticNocrtBinary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { name: "mymodule_exports", @@ -785,6 +798,7 @@ cc_prebuilt_binary { } func TestSnapshotWithCcSharedLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -856,6 +870,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestSnapshotWithCcSharedLibrarySharedLibs(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -1005,6 +1020,7 @@ cc_prebuilt_library_shared { } func TestHostSnapshotWithCcSharedLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -1085,6 +1101,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestMultipleHostOsTypesSnapshotWithCcSharedLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -1168,6 +1185,7 @@ cc_prebuilt_library_shared { } func TestSnapshotWithCcStaticLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { name: "myexports", @@ -1232,6 +1250,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestHostSnapshotWithCcStaticLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { name: "myexports", @@ -1307,6 +1326,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestSnapshotWithCcLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { name: "myexports", @@ -1376,6 +1396,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestSnapshotSameLibraryWithNativeLibsAndNativeSharedLib(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { host_supported: true, @@ -1477,6 +1498,7 @@ cc_prebuilt_library { } func TestSnapshotSameLibraryWithAndroidNativeLibsAndHostNativeSharedLib(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { host_supported: true, @@ -1578,6 +1600,7 @@ cc_prebuilt_library { } func TestSnapshotSameLibraryWithNativeStaticLibsAndNativeSharedLib(t *testing.T) { + t.Parallel() testSdkError(t, "Incompatible member types", ` module_exports { host_supported: true, @@ -1609,6 +1632,7 @@ func TestSnapshotSameLibraryWithNativeStaticLibsAndNativeSharedLib(t *testing.T) } func TestHostSnapshotWithMultiLib64(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` module_exports { name: "myexports", @@ -1682,6 +1706,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestSnapshotWithCcHeadersLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -1721,6 +1746,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestSnapshotWithCcHeadersLibraryAndNativeBridgeSupport(t *testing.T) { + t.Parallel() result := android.GroupFixturePreparers( cc.PrepareForTestWithCcDefaultModules, PrepareForTestWithSdkBuildComponents, @@ -1778,6 +1804,7 @@ myinclude/Test.h -> include/myinclude/Test.h // module that has different output files for a native bridge target requests the native bridge // variants are copied into the sdk snapshot that it reports an error. func TestSnapshotWithCcHeadersLibrary_DetectsNativeBridgeSpecificProperties(t *testing.T) { + t.Parallel() android.GroupFixturePreparers( cc.PrepareForTestWithCcDefaultModules, PrepareForTestWithSdkBuildComponents, @@ -1814,6 +1841,7 @@ func TestSnapshotWithCcHeadersLibrary_DetectsNativeBridgeSpecificProperties(t *t } func TestSnapshotWithCcHeadersLibraryAndImageVariants(t *testing.T) { + t.Parallel() testImageVariant := func(t *testing.T, property, trait string) { result := android.GroupFixturePreparers( cc.PrepareForTestWithCcDefaultModules, @@ -1877,6 +1905,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestHostSnapshotWithCcHeadersLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -1933,6 +1962,7 @@ myinclude/Test.h -> include/myinclude/Test.h } func TestDeviceAndHostSnapshotWithCcHeadersLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -2002,6 +2032,7 @@ myinclude-host/HostTest.h -> linux_glibc/include/myinclude-host/HostTest.h } func TestSystemSharedLibPropagation(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -2162,6 +2193,7 @@ cc_prebuilt_library_shared { } func TestStubsLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -2223,6 +2255,7 @@ cc_prebuilt_library_shared { } func TestDeviceAndHostSnapshotWithStubsLibrary(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -2299,6 +2332,7 @@ cc_prebuilt_library_shared { } func TestUniqueHostSoname(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", @@ -2364,6 +2398,7 @@ cc_prebuilt_library_shared { } func TestNoSanitizerMembers(t *testing.T) { + t.Parallel() result := testSdkWithCc(t, ` sdk { name: "mysdk", |