diff options
author | Julien Desprez <jdesprez@google.com> | 2018-08-02 15:00:46 -0700 |
---|---|---|
committer | Julien Desprez <jdesprez@google.com> | 2018-08-07 15:51:21 -0700 |
commit | e146e39fa6852d66f20c6140784086ce23858e84 (patch) | |
tree | 02745294183104aeb4a30e4106cdb9503b848eb0 /java/java.go | |
parent | 6bfe4eb42c79d4930a71ba5ad013177b1741713f (diff) | |
download | android_build_soong-e146e39fa6852d66f20c6140784086ce23858e84.tar.gz android_build_soong-e146e39fa6852d66f20c6140784086ce23858e84.tar.bz2 android_build_soong-e146e39fa6852d66f20c6140784086ce23858e84.zip |
Support 'test_config' into soong modules
Test: make general-tests
Bug: 110982517
Change-Id: Ib2eab2653fdfce6f699b85c9fbc64558b6d40363
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go index 38c89f4c..700b9174 100644 --- a/java/java.go +++ b/java/java.go @@ -1352,6 +1352,10 @@ type testProperties struct { // list of compatibility suites (for example "cts", "vts") that the module should be // installed into. Test_suites []string `android:"arch_variant"` + + // the name of the test configuration (for example "AndroidTest.xml") that should be + // installed with the module. + Test_config *string `android:"arch_variant"` } type Test struct { |