From 44b29c643ae5f9ce5ef116a9f8f14ef3ffdf1b67 Mon Sep 17 00:00:00 2001 From: Dan Shi Date: Mon, 6 Jan 2020 15:52:10 -0800 Subject: [PATCH] Add fuzzy_fastboot to vts-core suite The binary is required by FastbootVerifyUserspaceTest. Disable test config generation as fuzzy_fasboot itself is not part of vts-core suite. Bug: 147249791 Test: atest FastbootVerifyUserspaceTest Change-Id: Ief86f33b41990a354497b128e154da04fec58ae9 --- fastboot/fuzzy_fastboot/Android.bp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/fastboot/fuzzy_fastboot/Android.bp b/fastboot/fuzzy_fastboot/Android.bp index 277cc3a9d..19b33e40d 100644 --- a/fastboot/fuzzy_fastboot/Android.bp +++ b/fastboot/fuzzy_fastboot/Android.bp @@ -40,5 +40,13 @@ cc_test_host { "-framework IOKit", ], }, - } + }, + + // Disable auto-generation of test config as this binary itself is not a test in the test suites, + // rather it is used by other tests. + auto_gen_config: false, + test_suites: [ + "general-tests", + "vts-core", + ], }