diff options
author | 2022-08-12 18:49:20 +0800 | |
---|---|---|
committer | 2022-08-17 01:19:15 +0800 | |
commit | 0ac5a431a98d6f0fbc9434d4c7955981117f781f (patch) | |
tree | 8e79a8eaa30d9b33e5d69508ef12f4d6e1f8ee6c /rust/test.go | |
parent | 63e738ffe0cb7328d75e288ee0356da5e521c455 (diff) |
Move common test_options properties into the android package
Multiple modules (e.g. java, cc, python, rust) define the `test_options`
field. Extract the common properties in test_options to share across
different test rules.
Bug: 240928948
Test: `refreshmod` and diff with original module-info.json
Change-Id: I404a7a157b4ccaa53d800ee2217559ff695bd825
Diffstat (limited to 'rust/test.go')
-rw-r--r-- | rust/test.go | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/rust/test.go b/rust/test.go index 6e5393595..0cc3bca6e 100644 --- a/rust/test.go +++ b/rust/test.go @@ -24,12 +24,6 @@ import ( "android/soong/tradefed" ) -// Test option struct. -type TestOptions struct { - // If the test is a hostside(no device required) unittest that shall be run during presubmit check. - Unit_test *bool -} - type TestProperties struct { // Disables the creation of a test-specific directory when used with // relative_install_path. Useful if several tests need to be in the same @@ -67,7 +61,7 @@ type TestProperties struct { Test_harness *bool // Test options. - Test_options TestOptions + Test_options android.CommonTestOptions // Add RootTargetPreparer to auto generated test config. This guarantees the test to run // with root permission. |