summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Victor Hsieh <victorhsieh@google.com> 2020-03-26 08:23:25 -0700
committer Victor Hsieh <victorhsieh@google.com> 2020-03-26 08:41:18 -0700
commit3f79948d4be1a6f776844d58208804281b925f06 (patch)
tree773d1efaa4e453b7f8ff0583d4e4d012f5ee0c83
parent5a563d287074fac4b3375380eb67fa09b53a4604 (diff)
Don't generate test config for block_device_writer_module
This module itself is not a test, but an executable to run by another test. Test: TH Bug: 152437576 Change-Id: Id6561278879f5eb7d900dd5b6f6a6c90189fefb6
-rw-r--r--tests/ApkVerityTest/block_device_writer/Android.bp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ApkVerityTest/block_device_writer/Android.bp b/tests/ApkVerityTest/block_device_writer/Android.bp
index 65cb3643259b..2760fe8df2d8 100644
--- a/tests/ApkVerityTest/block_device_writer/Android.bp
+++ b/tests/ApkVerityTest/block_device_writer/Android.bp
@@ -13,7 +13,7 @@
// limitations under the License.
// This is a cc_test just because it supports test_suites. This should be converted to something
-// like cc_binary_test_helper once supported.
+// like cc_binary_test_helper once supported, thus auto_gen_config:false below.
cc_test {
// Depending on how the test runs, the executable may be uploaded to different location.
// Before the bug in the file pusher is fixed, workaround by making the name unique.
@@ -47,6 +47,7 @@ cc_test {
},
},
+ auto_gen_config: false,
test_suites: ["general-tests", "pts", "vts-core"],
gtest: false,
}