From eee7bd3e543d930d69a182ea81c22dcc155bcdf1 Mon Sep 17 00:00:00 2001 From: Yike Date: Wed, 28 Sep 2022 20:58:25 +0800 Subject: Add a missing test dependency for StagedRollbackTest 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 StagedRollbackTest Change-Id: I6a072ccf1a49f039d8f2ffa40b7d3a68764017e6 --- tests/RollbackTest/Android.bp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/RollbackTest/Android.bp b/tests/RollbackTest/Android.bp index b7c4c5b28168..f2234fb64108 100644 --- a/tests/RollbackTest/Android.bp +++ b/tests/RollbackTest/Android.bp @@ -51,6 +51,7 @@ java_test_host { data: [ ":com.android.apex.apkrollback.test_v1", ":test.rebootless_apex_v1", + ":RollbackTest", ], } -- cgit v1.2.3-59-g8ed1b