aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorJooyung Han <jooyung@google.com>2022-02-22 16:33:24 +0900
committerJooyung Han <jooyung@google.com>2022-02-22 16:33:24 +0900
commit3ae4cca6e10c447eeff52480aa8de7a08c6511c2 (patch)
tree37fb729cbab80f2bb51ab680ea065765d5d21c19 /sh
parent7309742728063ebea25eff41df6ce0483fbe7f84 (diff)
downloadsoong-3ae4cca6e10c447eeff52480aa8de7a08c6511c2.tar.gz
sh_test: Support per-testcase directories
Similar to cfb0f5e102e2a4a946c4f6e38d429b132ed11fc5 Bug: n/a Test: add a new CTS sh_test_host module with duplicate 'data'; Change-Id: Ie7d183bb5703d616d61d7dcb7c8b44502de429bb
Diffstat (limited to 'sh')
-rw-r--r--sh/sh_binary.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/sh/sh_binary.go b/sh/sh_binary.go
index 4190e84b8..d1beaba41 100644
--- a/sh/sh_binary.go
+++ b/sh/sh_binary.go
@@ -149,6 +149,9 @@ type TestProperties struct {
// Only available for host sh_test modules.
Data_device_libs []string `android:"path,arch_variant"`
+ // Install the test into a folder named for the module in all test suites.
+ Per_testcase_directory *bool
+
// Test options.
Test_options TestOptions
}
@@ -464,6 +467,7 @@ func (s *ShTest) AndroidMkEntries() []android.AndroidMkEntries {
if Bool(s.testProperties.Test_options.Unit_test) {
entries.SetBool("LOCAL_IS_UNIT_TEST", true)
}
+ entries.SetBoolIfTrue("LOCAL_COMPATIBILITY_PER_TESTCASE_DIRECTORY", Bool(s.testProperties.Per_testcase_directory))
},
},
}}