Generate product variants by default
PRODUCT_PRODUCT_VNDK_VERSION is set to 'current' by default. Now, we can generate product variants without checking the PRODUCT_PRODUCT_VNDK_VERSION build variable. Remove reading the PRODUCT_PRODUCT_VNDK_VERSION variable from soong and generate product variants by default. Bug: 302255959 Test: m Change-Id: I9a9b2076f4367c5ce9a393bbb206f8dee3884bd8
This commit is contained in:
176
cc/cc_test.go
176
cc/cc_test.go
@@ -41,7 +41,6 @@ var prepareForCcTest = android.GroupFixturePreparers(
|
||||
PrepareForTestWithCcIncludeVndk,
|
||||
android.FixtureModifyProductVariables(func(variables android.FixtureProductVariables) {
|
||||
variables.DeviceVndkVersion = StringPtr("current")
|
||||
variables.ProductVndkVersion = StringPtr("current")
|
||||
variables.Platform_vndk_version = StringPtr("29")
|
||||
}),
|
||||
)
|
||||
@@ -104,33 +103,6 @@ func testCc(t *testing.T, bp string) *android.TestContext {
|
||||
return result.TestContext
|
||||
}
|
||||
|
||||
// testCcNoVndk runs tests using the prepareForCcTest
|
||||
//
|
||||
// See testCc for an explanation as to how to stop using this deprecated method.
|
||||
//
|
||||
// deprecated
|
||||
func testCcNoVndk(t *testing.T, bp string) *android.TestContext {
|
||||
t.Helper()
|
||||
config := TestConfig(t.TempDir(), android.Android, nil, bp, nil)
|
||||
config.TestProductVariables.Platform_vndk_version = StringPtr("29")
|
||||
|
||||
return testCcWithConfig(t, config)
|
||||
}
|
||||
|
||||
// testCcNoProductVndk runs tests using the prepareForCcTest
|
||||
//
|
||||
// See testCc for an explanation as to how to stop using this deprecated method.
|
||||
//
|
||||
// deprecated
|
||||
func testCcNoProductVndk(t *testing.T, bp string) *android.TestContext {
|
||||
t.Helper()
|
||||
config := TestConfig(t.TempDir(), android.Android, nil, bp, nil)
|
||||
config.TestProductVariables.DeviceVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.Platform_vndk_version = StringPtr("29")
|
||||
|
||||
return testCcWithConfig(t, config)
|
||||
}
|
||||
|
||||
// testCcErrorWithConfig runs tests using the prepareForCcTest
|
||||
//
|
||||
// See testCc for an explanation as to how to stop using this deprecated method.
|
||||
@@ -167,7 +139,6 @@ func testCcErrorProductVndk(t *testing.T, pattern string, bp string) {
|
||||
t.Helper()
|
||||
config := TestConfig(t.TempDir(), android.Android, nil, bp, nil)
|
||||
config.TestProductVariables.DeviceVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.ProductVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.Platform_vndk_version = StringPtr("29")
|
||||
testCcErrorWithConfig(t, pattern, config)
|
||||
return
|
||||
@@ -523,7 +494,6 @@ func TestVndk(t *testing.T) {
|
||||
|
||||
config := TestConfig(t.TempDir(), android.Android, nil, bp, nil)
|
||||
config.TestProductVariables.DeviceVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.ProductVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.Platform_vndk_version = StringPtr("29")
|
||||
|
||||
ctx := testCcWithConfig(t, config)
|
||||
@@ -889,63 +859,6 @@ func TestTestLibraryTestSuites(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestVndkWhenVndkVersionIsNotSet(t *testing.T) {
|
||||
t.Parallel()
|
||||
ctx := testCcNoVndk(t, `
|
||||
cc_library {
|
||||
name: "libvndk",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
vndk: {
|
||||
enabled: true,
|
||||
},
|
||||
nocrt: true,
|
||||
}
|
||||
cc_library {
|
||||
name: "libvndk-private",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
vndk: {
|
||||
enabled: true,
|
||||
private: true,
|
||||
},
|
||||
nocrt: true,
|
||||
}
|
||||
|
||||
cc_library {
|
||||
name: "libllndk",
|
||||
llndk: {
|
||||
symbol_file: "libllndk.map.txt",
|
||||
export_llndk_headers: ["libllndk_headers"],
|
||||
}
|
||||
}
|
||||
|
||||
cc_library_headers {
|
||||
name: "libllndk_headers",
|
||||
llndk: {
|
||||
symbol_file: "libllndk.map.txt",
|
||||
},
|
||||
export_include_dirs: ["include"],
|
||||
}
|
||||
`)
|
||||
|
||||
checkVndkOutput(t, ctx, "vndk/vndk.libraries.txt", []string{
|
||||
"LLNDK: libc.so",
|
||||
"LLNDK: libdl.so",
|
||||
"LLNDK: libft2.so",
|
||||
"LLNDK: libllndk.so",
|
||||
"LLNDK: libm.so",
|
||||
"VNDK-SP: libc++.so",
|
||||
"VNDK-core: libvndk-private.so",
|
||||
"VNDK-core: libvndk.so",
|
||||
"VNDK-private: libft2.so",
|
||||
"VNDK-private: libvndk-private.so",
|
||||
"VNDK-product: libc++.so",
|
||||
"VNDK-product: libvndk-private.so",
|
||||
"VNDK-product: libvndk.so",
|
||||
})
|
||||
}
|
||||
|
||||
func TestVndkModuleError(t *testing.T) {
|
||||
t.Parallel()
|
||||
// Check the error message for vendor_available and product_available properties.
|
||||
@@ -1111,6 +1024,7 @@ func TestVndkDepError(t *testing.T) {
|
||||
cc_library {
|
||||
name: "libnonvndk",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
nocrt: true,
|
||||
}
|
||||
`)
|
||||
@@ -1132,6 +1046,7 @@ func TestVndkDepError(t *testing.T) {
|
||||
cc_library {
|
||||
name: "libnonvndk",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
nocrt: true,
|
||||
}
|
||||
`)
|
||||
@@ -1153,6 +1068,7 @@ func TestVndkDepError(t *testing.T) {
|
||||
cc_library {
|
||||
name: "libnonvndk",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
nocrt: true,
|
||||
}
|
||||
`)
|
||||
@@ -1175,6 +1091,7 @@ func TestVndkDepError(t *testing.T) {
|
||||
cc_library {
|
||||
name: "libnonvndk",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
nocrt: true,
|
||||
}
|
||||
`)
|
||||
@@ -1390,6 +1307,7 @@ func TestCheckVndkMembershipBeforeDoubleLoadable(t *testing.T) {
|
||||
cc_library {
|
||||
name: "libanothervndksp",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
}
|
||||
`)
|
||||
}
|
||||
@@ -1467,7 +1385,6 @@ func TestVndkExt(t *testing.T) {
|
||||
`
|
||||
config := TestConfig(t.TempDir(), android.Android, nil, bp, nil)
|
||||
config.TestProductVariables.DeviceVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.ProductVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.Platform_vndk_version = StringPtr("29")
|
||||
|
||||
ctx := testCcWithConfig(t, config)
|
||||
@@ -1482,70 +1399,6 @@ func TestVndkExt(t *testing.T) {
|
||||
assertString(t, mod_product.outputFile.Path().Base(), "libvndk2-suffix.so")
|
||||
}
|
||||
|
||||
func TestVndkExtWithoutBoardVndkVersion(t *testing.T) {
|
||||
t.Parallel()
|
||||
// This test checks the VNDK-Ext properties when BOARD_VNDK_VERSION is not set.
|
||||
ctx := testCcNoVndk(t, `
|
||||
cc_library {
|
||||
name: "libvndk",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
vndk: {
|
||||
enabled: true,
|
||||
},
|
||||
nocrt: true,
|
||||
}
|
||||
|
||||
cc_library {
|
||||
name: "libvndk_ext",
|
||||
vendor: true,
|
||||
vndk: {
|
||||
enabled: true,
|
||||
extends: "libvndk",
|
||||
},
|
||||
nocrt: true,
|
||||
}
|
||||
`)
|
||||
|
||||
// Ensures that the core variant of "libvndk_ext" can be found.
|
||||
mod := ctx.ModuleForTests("libvndk_ext", coreVariant).Module().(*Module)
|
||||
if extends := mod.getVndkExtendsModuleName(); extends != "libvndk" {
|
||||
t.Errorf("\"libvndk_ext\" must extend from \"libvndk\" but get %q", extends)
|
||||
}
|
||||
}
|
||||
|
||||
func TestVndkExtWithoutProductVndkVersion(t *testing.T) {
|
||||
t.Parallel()
|
||||
// This test checks the VNDK-Ext properties when PRODUCT_PRODUCT_VNDK_VERSION is not set.
|
||||
ctx := testCcNoProductVndk(t, `
|
||||
cc_library {
|
||||
name: "libvndk",
|
||||
vendor_available: true,
|
||||
product_available: true,
|
||||
vndk: {
|
||||
enabled: true,
|
||||
},
|
||||
nocrt: true,
|
||||
}
|
||||
|
||||
cc_library {
|
||||
name: "libvndk_ext_product",
|
||||
product_specific: true,
|
||||
vndk: {
|
||||
enabled: true,
|
||||
extends: "libvndk",
|
||||
},
|
||||
nocrt: true,
|
||||
}
|
||||
`)
|
||||
|
||||
// Ensures that the core variant of "libvndk_ext_product" can be found.
|
||||
mod := ctx.ModuleForTests("libvndk_ext_product", coreVariant).Module().(*Module)
|
||||
if extends := mod.getVndkExtendsModuleName(); extends != "libvndk" {
|
||||
t.Errorf("\"libvndk_ext_product\" must extend from \"libvndk\" but get %q", extends)
|
||||
}
|
||||
}
|
||||
|
||||
func TestVndkExtError(t *testing.T) {
|
||||
t.Parallel()
|
||||
// This test ensures an error is emitted in ill-formed vndk-ext definition.
|
||||
@@ -1920,7 +1773,6 @@ func TestProductVndkExtDependency(t *testing.T) {
|
||||
`
|
||||
config := TestConfig(t.TempDir(), android.Android, nil, bp, nil)
|
||||
config.TestProductVariables.DeviceVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.ProductVndkVersion = StringPtr("current")
|
||||
config.TestProductVariables.Platform_vndk_version = StringPtr("29")
|
||||
|
||||
testCcWithConfig(t, config)
|
||||
@@ -3034,24 +2886,6 @@ func TestExcludeRuntimeLibs(t *testing.T) {
|
||||
checkRuntimeLibs(t, nil, module)
|
||||
}
|
||||
|
||||
func TestRuntimeLibsNoVndk(t *testing.T) {
|
||||
t.Parallel()
|
||||
ctx := testCcNoVndk(t, runtimeLibAndroidBp)
|
||||
|
||||
// If DeviceVndkVersion is not defined, then runtime_libs are copied as-is.
|
||||
|
||||
variant := "android_arm64_armv8-a_shared"
|
||||
|
||||
module := ctx.ModuleForTests("libvendor_available1", variant).Module().(*Module)
|
||||
checkRuntimeLibs(t, []string{"liball_available"}, module)
|
||||
|
||||
module = ctx.ModuleForTests("libvendor2", variant).Module().(*Module)
|
||||
checkRuntimeLibs(t, []string{"liball_available", "libvendor1", "libproduct_vendor"}, module)
|
||||
|
||||
module = ctx.ModuleForTests("libproduct2", variant).Module().(*Module)
|
||||
checkRuntimeLibs(t, []string{"liball_available", "libproduct1", "libproduct_vendor"}, module)
|
||||
}
|
||||
|
||||
func checkStaticLibs(t *testing.T, expected []string, module *Module) {
|
||||
t.Helper()
|
||||
actual := module.Properties.AndroidMkStaticLibs
|
||||
|
Reference in New Issue
Block a user