diff options
author | 2025-01-15 17:26:14 -0800 | |
---|---|---|
committer | 2025-01-15 18:08:55 -0800 | |
commit | cb9bd8940b73eb10e832ed7cfca89bf86ca8e8b4 (patch) | |
tree | 99c8d6d93a241a04f8021b25a30a37bdcf0f1705 /filesystem/filesystem_test.go | |
parent | 628d810b73dc6c2f04b1c99e00f52e978125634f (diff) |
Remove Include_make_built_files
We're not using this anytime soon, so just remove it for now.
Bug: 390269431
Test: m nothing
Change-Id: I51bbf104dceabafc08d562cfecb31a845cb88d12
Diffstat (limited to 'filesystem/filesystem_test.go')
-rw-r--r-- | filesystem/filesystem_test.go | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/filesystem/filesystem_test.go b/filesystem/filesystem_test.go index 47d06f669..d9bf24299 100644 --- a/filesystem/filesystem_test.go +++ b/filesystem/filesystem_test.go @@ -136,22 +136,6 @@ func TestFileSystemDeps(t *testing.T) { } } -func TestIncludeMakeBuiltFiles(t *testing.T) { - result := fixture.RunTestWithBp(t, ` - android_filesystem { - name: "myfilesystem", - include_make_built_files: "system", - } - `) - - output := result.ModuleForTests("myfilesystem", "android_common").Output("myfilesystem.img") - - stampFile := "out/target/product/test_device/obj/PACKAGING/system_intermediates/staging_dir.stamp" - fileListFile := "out/target/product/test_device/obj/PACKAGING/system_intermediates/file_list.txt" - android.AssertStringListContains(t, "deps of filesystem must include the staging dir stamp file", output.Implicits.Strings(), stampFile) - android.AssertStringListContains(t, "deps of filesystem must include the staging dir file list", output.Implicits.Strings(), fileListFile) -} - func TestFileSystemFillsLinkerConfigWithStubLibs(t *testing.T) { result := fixture.RunTestWithBp(t, ` android_system_image { |