diff options
author | 2025-01-29 19:30:31 +0000 | |
---|---|---|
committer | 2025-01-29 22:36:25 +0000 | |
commit | 8219749c9b1f332bd200dd0e042a84d21840c8ff (patch) | |
tree | 42e7e5c9f971d94c23f36239663783125439e974 /java/java_test.go | |
parent | 732446ca771879c9ccf431e854defb275146f7c4 (diff) |
Install java_test module test deps and configs in soong-only
This change installs test deps and configs to the `testcase/` directory
for atests use in soong-only builds.
Bug: 391924360
Test: locally set PRODUCT_SOONG_ONLY && m clean && atest signature-host-tests
Change-Id: I6655c2903c2f62c65ff0056b0dbe542df48e3e49
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java_test.go b/java/java_test.go index d415679bd..53d2f5c24 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -1916,7 +1916,7 @@ func TestDataDeviceBinsBuildsDeviceBinary(t *testing.T) { } actualData := entries.EntryMap["LOCAL_COMPATIBILITY_SUPPORT_FILES"] - android.AssertStringPathsRelativeToTopEquals(t, "LOCAL_TEST_DATA", ctx.Config, expectedData, actualData) + android.AssertStringPathsRelativeToTopEquals(t, "LOCAL_TEST_DATA", ctx.Config, android.SortedUniqueStrings(expectedData), android.SortedUniqueStrings(actualData)) }) } } |