diff options
author | 2023-11-17 15:27:06 +0000 | |
---|---|---|
committer | 2023-11-20 21:52:56 +0000 | |
commit | 87b2ab28a80c11b264794344c4299e734b87e24d (patch) | |
tree | 9cc8db0392d01889e307cd07e0ff78baa1823efc /rust/test.go | |
parent | b91108c9c07c45ff708030114372db6d217b4e2d (diff) |
Add test spec provider to test modules.
Provider added for the following test modules in this change: art_cc_test, cc_benchmark, cc_fuzz, cc_test, cc_test_host, rust_test,and rust_test_host.
Bug: 296873595
Test: Manual test
Change-Id: I815680529bcbecacb3a2bdb8f3746053afdee48c
Diffstat (limited to 'rust/test.go')
-rw-r--r-- | rust/test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/test.go b/rust/test.go index 4b5296e54..7ffc36767 100644 --- a/rust/test.go +++ b/rust/test.go @@ -222,11 +222,13 @@ func RustTestFactory() android.Module { // rustTestHostMultilib load hook to set MultilibFirst for the // host target. android.AddLoadHook(module, rustTestHostMultilib) + module.testModule = true return module.Init() } func RustTestHostFactory() android.Module { module, _ := NewRustTest(android.HostSupported) + module.testModule = true return module.Init() } |