From 57f5b33ad3c0b1d027e258d1633ef2a4a6de24e4 Mon Sep 17 00:00:00 2001 From: Liz Kammer Date: Tue, 24 Nov 2020 12:42:58 -0800 Subject: Add test suite handling to central androidmk code MTS is introducing partial MTS test suites that are per-module, with names of the format: mts-${MODULE}. By centralizing the code for test suites, we can automatically add "mts" test suite when an "mts-${MODULE}" test suite is specified, reducing duplication. Test: m mts Bug: 170318013 Change-Id: I8ce9d3c252fcc0a937bb5f2826d21cb6c6932d82 --- android/csuite_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android/csuite_config.go') diff --git a/android/csuite_config.go b/android/csuite_config.go index a5b15331a..bf24d98c7 100644 --- a/android/csuite_config.go +++ b/android/csuite_config.go @@ -44,7 +44,7 @@ func (me *CSuiteConfig) AndroidMkEntries() []AndroidMkEntries { if me.properties.Test_config != nil { entries.SetString("LOCAL_TEST_CONFIG", *me.properties.Test_config) } - entries.AddStrings("LOCAL_COMPATIBILITY_SUITE", "csuite") + entries.AddCompatibilityTestSuites("csuite") }, } return []AndroidMkEntries{androidMkEntries} -- cgit v1.2.3-59-g8ed1b