diff options
author | 2024-05-01 02:43:23 +0000 | |
---|---|---|
committer | 2024-05-01 02:43:23 +0000 | |
commit | 543d4f3b7d7cb403e3c951e0846c9464a32daaf7 (patch) | |
tree | e1849eb51f439c3b81dc58d07c4be30aea621bf9 /filesystem/filesystem_test.go | |
parent | 6ab1b1fd031f95ee129563c02484a1285662f536 (diff) | |
parent | 742f54c4bc32d44cb9c742dbc6c35bd85e7aa395 (diff) |
Merge changes from topic "duplicate_entry_fs" into main
* changes:
Filesystem modules follow the installation semantic
Prevent multiple PackagingSpecs having same installation path
Diffstat (limited to 'filesystem/filesystem_test.go')
-rw-r--r-- | filesystem/filesystem_test.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/filesystem/filesystem_test.go b/filesystem/filesystem_test.go index 121504867..acd481352 100644 --- a/filesystem/filesystem_test.go +++ b/filesystem/filesystem_test.go @@ -442,3 +442,26 @@ func TestInconsistentPartitionTypesInDefaults(t *testing.T) { } `) } + +func TestPreventDuplicatedEntries(t *testing.T) { + fixture.ExtendWithErrorHandler(android.FixtureExpectsOneErrorPattern( + "packaging conflict at")). + RunTestWithBp(t, ` + android_filesystem { + name: "fs", + deps: [ + "foo", + "foo_dup", + ], + } + + cc_binary { + name: "foo", + } + + cc_binary { + name: "foo_dup", + stem: "foo", + } + `) +} |