diff options
| author | 2022-08-29 13:11:40 +0800 | |
|---|---|---|
| committer | 2022-08-29 13:11:40 +0800 | |
| commit | db0cf574d0932a0159ce3af5733cf65ca55ba677 (patch) | |
| tree | 314f318fad5c081e330e3a9ff9f38cc5f6b02eca | |
| parent | 74441f0ef33e384d79d4905dd8b69b143bcf1236 (diff) | |
Add a missing test dependency for StagedInstallInternalTest
In Android.bp, all dependencies of a test should be declared explicitly, so that test infrastructure could only provide the needed dependencies instead of all to run a test. This change adds the missing dependency that is used in test config file but not declared in Android.bp.
Bug: 222438068
Test: atest StagedInstallInternalTest
Change-Id: Iacb69db0316bd721253e41364e42ccfae565049b
| -rw-r--r-- | tests/StagedInstallTest/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/StagedInstallTest/Android.bp b/tests/StagedInstallTest/Android.bp index 1709e1501537..ffde8c7d342c 100644 --- a/tests/StagedInstallTest/Android.bp +++ b/tests/StagedInstallTest/Android.bp @@ -58,6 +58,7 @@ java_test_host { ":apex.apexd_test", ":com.android.apex.apkrollback.test_v1", ":com.android.apex.apkrollback.test_v2", + ":StagedInstallInternalTestApp", ":StagedInstallTestApexV2", ":StagedInstallTestApexV2_WrongSha", ":TestAppAv1", |