diff options
author | 2024-12-05 01:07:19 +0000 | |
---|---|---|
committer | 2024-12-05 01:07:19 +0000 | |
commit | 60c82fba3e598968e2c9207925a7158503f6a829 (patch) | |
tree | d091315bd4ac2a33eb68d0f1bf3845f80e9c1698 /filesystem/filesystem_test.go | |
parent | b3e0deb450070044efe010c98d91ca115012c641 (diff) | |
parent | 5605d267dedb9b0c45317462c95a394525e3fccb (diff) |
Merge "Fixes for avb flags in soong-generated partitions" into main am: 8759130e87 am: 5605d267de
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/3390960
Change-Id: Ic43f9b41dd8aec7f64cab5bd85d82486541d7680
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'filesystem/filesystem_test.go')
-rw-r--r-- | filesystem/filesystem_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filesystem/filesystem_test.go b/filesystem/filesystem_test.go index 72a52111c..86496eb6e 100644 --- a/filesystem/filesystem_test.go +++ b/filesystem/filesystem_test.go @@ -593,7 +593,7 @@ func TestErofsPartition(t *testing.T) { `) partition := result.ModuleForTests("erofs_partition", "android_common") - buildImageConfig := android.ContentFromFileRuleForTests(t, result.TestContext, partition.Output("prop")) + buildImageConfig := android.ContentFromFileRuleForTests(t, result.TestContext, partition.Output("prop_pre_processing")) android.AssertStringDoesContain(t, "erofs fs type", buildImageConfig, "fs_type=erofs") android.AssertStringDoesContain(t, "erofs fs type compress algorithm", buildImageConfig, "erofs_default_compressor=lz4hc,9") android.AssertStringDoesContain(t, "erofs fs type compress hint", buildImageConfig, "erofs_default_compress_hints=compress_hints.txt") @@ -609,7 +609,7 @@ func TestF2fsPartition(t *testing.T) { `) partition := result.ModuleForTests("f2fs_partition", "android_common") - buildImageConfig := android.ContentFromFileRuleForTests(t, result.TestContext, partition.Output("prop")) + buildImageConfig := android.ContentFromFileRuleForTests(t, result.TestContext, partition.Output("prop_pre_processing")) android.AssertStringDoesContain(t, "f2fs fs type", buildImageConfig, "fs_type=f2fs") android.AssertStringDoesContain(t, "f2fs fs type sparse", buildImageConfig, "f2fs_sparse_flag=-S") } |