diff options
author | 2025-01-16 08:56:05 -0800 | |
---|---|---|
committer | 2025-01-16 08:56:05 -0800 | |
commit | 1dc6489345a3926d1340d1681f7074c04402a8bd (patch) | |
tree | f9bf205b8650e88bed0b53acc42d55da47a94da4 /filesystem/filesystem_test.go | |
parent | a2c4c09e6f8b0a63347f2fa0a9028535e3dc88e4 (diff) | |
parent | 62cfaeb28cd75e388a2c3d17c35b2c75b14f1d7b (diff) |
Merge changes I18b9b90a,I51bbf104 into main
* changes:
Dedup common filesystem code
Remove Include_make_built_files
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 { |