diff options
author | 2024-12-10 20:16:07 +0000 | |
---|---|---|
committer | 2024-12-10 20:16:07 +0000 | |
commit | 3747221ade705fbd54cd575a53d060f22de38b0d (patch) | |
tree | b289d05a674fbd06b82dc08d216c555ba81cf7fa /filesystem/filesystem_test.go | |
parent | ad6918499ca4094acc5906f01572cd02116f0c53 (diff) | |
parent | 95db4499428f421571819699d92581e7422e7659 (diff) |
Merge "Use partition intead of "root" to assemble filesystem artifacts" into main
Diffstat (limited to 'filesystem/filesystem_test.go')
-rw-r--r-- | filesystem/filesystem_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystem/filesystem_test.go b/filesystem/filesystem_test.go index 0ed3870a6..2dcb23d3f 100644 --- a/filesystem/filesystem_test.go +++ b/filesystem/filesystem_test.go @@ -181,7 +181,7 @@ func TestFileSystemFillsLinkerConfigWithStubLibs(t *testing.T) { `) module := result.ModuleForTests("myfilesystem", "android_common") - output := module.Output("out/soong/.intermediates/myfilesystem/android_common/root/system/etc/linker.config.pb") + output := module.Output("out/soong/.intermediates/myfilesystem/android_common/myfilesystem/system/etc/linker.config.pb") fullCommand := output.RuleParams.Command startIndex := strings.Index(fullCommand, "conv_linker_config") |