diff options
author | 2024-11-11 21:24:58 +0000 | |
---|---|---|
committer | 2024-11-11 21:24:58 +0000 | |
commit | 2047a4c20600e3f4bb7715ff5711e7d9556bb584 (patch) | |
tree | 0f8dc54952423c4f3a482ab5ad7edfa0e1fcb215 /filesystem/filesystem_test.go | |
parent | 3f6305935f623bb150605c2d0342751e78924b4e (diff) |
Remove linkerconfig prop to linker_config
This makes this consistent with its inner props `gen_linker_config` and
`linker_config_srcs`
Test: m nothing --no-skip-soong-tests
Change-Id: I6efee5cc2d182af9c600ec80e3b02d1776ba8eb9
Diffstat (limited to 'filesystem/filesystem_test.go')
-rw-r--r-- | filesystem/filesystem_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/filesystem/filesystem_test.go b/filesystem/filesystem_test.go index f284161c5..f325d96ef 100644 --- a/filesystem/filesystem_test.go +++ b/filesystem/filesystem_test.go @@ -161,7 +161,7 @@ func TestFileSystemFillsLinkerConfigWithStubLibs(t *testing.T) { "libfoo", "libbar", ], - linkerconfig: { + linker_config: { gen_linker_config: true, linker_config_srcs: ["linker.config.json"], }, @@ -227,7 +227,7 @@ func TestFileSystemGathersItemsOnlyInSystemPartition(t *testing.T) { deps: ["foo"], }, }, - linkerconfig: { + linker_config: { gen_linker_config: true, linker_config_srcs: ["linker.config.json"], }, @@ -325,7 +325,7 @@ func TestFileSystemWithCoverageVariants(t *testing.T) { deps: [ "libfoo", ], - linkerconfig: { + linker_config: { gen_linker_config: true, linker_config_srcs: ["linker.config.json"], }, @@ -709,7 +709,7 @@ func TestInstallLinkerConfigFile(t *testing.T) { android_filesystem { name: "myfilesystem", deps: ["libfoo_has_no_stubs", "libfoo_has_stubs"], - linkerconfig: { + linker_config: { gen_linker_config: true, linker_config_srcs: ["linker.config.json"], }, |