summaryrefslogtreecommitdiff
path: root/java/java.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2021-10-01 16:27:55 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2021-10-01 16:27:55 +0000
commit2df9ebf9cae3cb160926816548882c7f7db2e39d (patch)
tree12639a8004f1cc9582e77aab46e9958842e17d6b /java/java.go
parentd7d5b72e4e3cb702f1bd328e632f81d61e836e7a (diff)
parentc8caa06a36913b0633b14b9cdb46c6fc72eb6f41 (diff)
Merge changes from topics "bp-bionic-cts-tests", "cts-per-testcase-directory"
* changes: Add data_bins property Support per-testcase directories in all test suites Add environment variables to cc_genrule commands
Diffstat (limited to 'java/java.go')
-rw-r--r--java/java.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go
index 23809df74..e7928c84e 100644
--- a/java/java.go
+++ b/java/java.go
@@ -781,6 +781,9 @@ type testProperties struct {
// Names of modules containing JNI libraries that should be installed alongside the test.
Jni_libs []string
+
+ // Install the test into a folder named for the module in all test suites.
+ Per_testcase_directory *bool
}
type hostTestProperties struct {
@@ -792,6 +795,9 @@ type testHelperLibraryProperties struct {
// list of compatibility suites (for example "cts", "vts") that the module should be
// installed into.
Test_suites []string `android:"arch_variant"`
+
+ // Install the test into a folder named for the module in all test suites.
+ Per_testcase_directory *bool
}
type prebuiltTestProperties struct {