Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 1 | // Copyright 2016 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package cc |
| 16 | |
| 17 | import ( |
| 18 | "path/filepath" |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 19 | "strconv" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 20 | "strings" |
| 21 | |
Julien Desprez | 3b933d3 | 2021-01-14 11:49:15 -0800 | [diff] [blame] | 22 | "github.com/google/blueprint/proptools" |
| 23 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 24 | "android/soong/android" |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 25 | "android/soong/bazel" |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 26 | "android/soong/tradefed" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 27 | ) |
| 28 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 29 | // TestLinkerProperties properties to be registered via the linker |
| 30 | type TestLinkerProperties struct { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 31 | // if set, build against the gtest library. Defaults to true. |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 32 | Gtest *bool |
Christopher Ferris | 9df92d6 | 2018-08-21 12:40:08 -0700 | [diff] [blame] | 33 | |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 34 | // if set, use the isolated gtest runner. Defaults to true if gtest is also true and the arch is Windows, false |
| 35 | // otherwise. |
Christopher Ferris | 9df92d6 | 2018-08-21 12:40:08 -0700 | [diff] [blame] | 36 | Isolated *bool |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 37 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 38 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 39 | // TestInstallerProperties properties to be registered via the installer |
| 40 | type TestInstallerProperties struct { |
| 41 | // list of compatibility suites (for example "cts", "vts") that the module should be installed into. |
| 42 | Test_suites []string `android:"arch_variant"` |
| 43 | } |
| 44 | |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 45 | // Test option struct. |
| 46 | type TestOptions struct { |
Zhenhuang Wang | 0ac5a43 | 2022-08-12 18:49:20 +0800 | [diff] [blame] | 47 | android.CommonTestOptions |
| 48 | |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 49 | // The UID that you want to run the test as on a device. |
| 50 | Run_test_as *string |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 51 | |
David Srbecky | 519db27 | 2020-06-18 18:07:00 +0100 | [diff] [blame] | 52 | // A list of free-formed strings without spaces that categorize the test. |
| 53 | Test_suite_tag []string |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 54 | |
| 55 | // a list of extra test configuration files that should be installed with the module. |
| 56 | Extra_test_configs []string `android:"path,arch_variant"` |
Dan Shi | d79572f | 2020-11-13 14:33:46 -0800 | [diff] [blame] | 57 | |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 58 | // Add ShippingApiLevelModuleController to auto generated test config. If the device properties |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 59 | // for the shipping api level is less than the min_shipping_api_level, skip this module. |
| 60 | Min_shipping_api_level *int64 |
| 61 | |
| 62 | // Add ShippingApiLevelModuleController to auto generated test config. If any of the device |
| 63 | // shipping api level and vendor api level properties are less than the |
| 64 | // vsr_min_shipping_api_level, skip this module. |
| 65 | // As this includes the shipping api level check, it is not allowed to define |
| 66 | // min_shipping_api_level at the same time with this property. |
| 67 | Vsr_min_shipping_api_level *int64 |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 68 | |
| 69 | // Add MinApiLevelModuleController with ro.vndk.version property. If ro.vndk.version has an |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 70 | // integer value and the value is less than the min_vndk_version, skip this module. |
| 71 | Min_vndk_version *int64 |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 72 | } |
| 73 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 74 | type TestBinaryProperties struct { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 75 | // Create a separate binary for each source file. Useful when there is |
| 76 | // global state that can not be torn down and reset between each test suite. |
| 77 | Test_per_src *bool |
Dan Willemsen | 3340d60 | 2016-12-27 14:40:40 -0800 | [diff] [blame] | 78 | |
| 79 | // Disables the creation of a test-specific directory when used with |
| 80 | // relative_install_path. Useful if several tests need to be in the same |
| 81 | // directory, but test_per_src doesn't work. |
| 82 | No_named_install_directory *bool |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 83 | |
| 84 | // list of files or filegroup modules that provide data that should be installed alongside |
| 85 | // the test |
Dan Shi | 67a8834 | 2020-02-25 16:34:39 -0800 | [diff] [blame] | 86 | Data []string `android:"path,arch_variant"` |
Colin Cross | a929db0 | 2017-03-27 16:27:50 -0700 | [diff] [blame] | 87 | |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 88 | // list of shared library modules that should be installed alongside the test |
| 89 | Data_libs []string `android:"arch_variant"` |
| 90 | |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 91 | // list of binary modules that should be installed alongside the test |
| 92 | Data_bins []string `android:"arch_variant"` |
| 93 | |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 94 | // the name of the test configuration (for example "AndroidTest.xml") that should be |
| 95 | // installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 96 | Test_config *string `android:"path,arch_variant"` |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 97 | |
| 98 | // the name of the test configuration template (for example "AndroidTestTemplate.xml") that |
| 99 | // should be installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 100 | Test_config_template *string `android:"path,arch_variant"` |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 101 | |
| 102 | // Test options. |
| 103 | Test_options TestOptions |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 104 | |
| 105 | // Add RootTargetPreparer to auto generated test config. This guarantees the test to run |
| 106 | // with root permission. |
| 107 | Require_root *bool |
Dan Shi | 20ccd21 | 2019-08-27 10:37:24 -0700 | [diff] [blame] | 108 | |
| 109 | // Add RunCommandTargetPreparer to stop framework before the test and start it after the test. |
| 110 | Disable_framework *bool |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 111 | |
Dan Shi | 6ffaaa8 | 2019-09-26 11:41:36 -0700 | [diff] [blame] | 112 | // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml |
| 113 | // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true |
| 114 | // explicitly. |
| 115 | Auto_gen_config *bool |
easoncylee | 1e3fdcd | 2020-04-30 10:08:33 +0800 | [diff] [blame] | 116 | |
| 117 | // Add parameterized mainline modules to auto generated test config. The options will be |
| 118 | // handled by TradeFed to download and install the specified modules on the device. |
| 119 | Test_mainline_modules []string |
Colin Cross | cfb0f5e | 2021-09-24 15:47:17 -0700 | [diff] [blame] | 120 | |
| 121 | // Install the test into a folder named for the module in all test suites. |
| 122 | Per_testcase_directory *bool |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | func init() { |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 126 | android.RegisterModuleType("cc_test", TestFactory) |
| 127 | android.RegisterModuleType("cc_test_library", TestLibraryFactory) |
| 128 | android.RegisterModuleType("cc_benchmark", BenchmarkFactory) |
| 129 | android.RegisterModuleType("cc_test_host", TestHostFactory) |
| 130 | android.RegisterModuleType("cc_benchmark_host", BenchmarkHostFactory) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 133 | // cc_test generates a test config file and an executable binary file to test |
| 134 | // specific functionality on a device. The executable binary gets an implicit |
| 135 | // static_libs dependency on libgtests unless the gtest flag is set to false. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 136 | func TestFactory() android.Module { |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 137 | module := NewTest(android.HostAndDeviceSupported, true) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 138 | return module.Init() |
| 139 | } |
| 140 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 141 | // cc_test_library creates an archive of files (i.e. .o files) which is later |
| 142 | // referenced by another module (such as cc_test, cc_defaults or cc_test_library) |
| 143 | // for archiving or linking. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 144 | func TestLibraryFactory() android.Module { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 145 | module := NewTestLibrary(android.HostAndDeviceSupported) |
| 146 | return module.Init() |
| 147 | } |
| 148 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 149 | // cc_benchmark compiles an executable binary that performs benchmark testing |
| 150 | // of a specific component in a device. Additional files such as test suites |
| 151 | // and test configuration are installed on the side of the compiled executed |
| 152 | // binary. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 153 | func BenchmarkFactory() android.Module { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 154 | module := NewBenchmark(android.HostAndDeviceSupported) |
| 155 | return module.Init() |
| 156 | } |
| 157 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 158 | // cc_test_host compiles a test host binary. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 159 | func TestHostFactory() android.Module { |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 160 | module := NewTest(android.HostSupported, true) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 161 | return module.Init() |
| 162 | } |
| 163 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 164 | // cc_benchmark_host compiles an executable binary that performs benchmark |
| 165 | // testing of a specific component in the host. Additional files such as |
| 166 | // test suites and test configuration are installed on the side of the |
| 167 | // compiled executed binary. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 168 | func BenchmarkHostFactory() android.Module { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 169 | module := NewBenchmark(android.HostSupported) |
| 170 | return module.Init() |
| 171 | } |
| 172 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 173 | type testPerSrc interface { |
| 174 | testPerSrc() bool |
| 175 | srcs() []string |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 176 | isAllTestsVariation() bool |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 177 | setSrc(string, string) |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 178 | unsetSrc() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | func (test *testBinary) testPerSrc() bool { |
| 182 | return Bool(test.Properties.Test_per_src) |
| 183 | } |
| 184 | |
| 185 | func (test *testBinary) srcs() []string { |
| 186 | return test.baseCompiler.Properties.Srcs |
| 187 | } |
| 188 | |
Chris Parsons | 216e10a | 2020-07-09 17:12:52 -0400 | [diff] [blame] | 189 | func (test *testBinary) dataPaths() []android.DataPath { |
Liz Kammer | 1c14a21 | 2020-05-12 15:26:55 -0700 | [diff] [blame] | 190 | return test.data |
| 191 | } |
| 192 | |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 193 | func (test *testBinary) isAllTestsVariation() bool { |
| 194 | stem := test.binaryDecorator.Properties.Stem |
| 195 | return stem != nil && *stem == "" |
| 196 | } |
| 197 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 198 | func (test *testBinary) setSrc(name, src string) { |
| 199 | test.baseCompiler.Properties.Srcs = []string{src} |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 200 | test.binaryDecorator.Properties.Stem = StringPtr(name) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 201 | } |
| 202 | |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 203 | func (test *testBinary) unsetSrc() { |
| 204 | test.baseCompiler.Properties.Srcs = nil |
| 205 | test.binaryDecorator.Properties.Stem = StringPtr("") |
| 206 | } |
| 207 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 208 | func (test *testBinary) testBinary() bool { |
| 209 | return true |
| 210 | } |
| 211 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 212 | var _ testPerSrc = (*testBinary)(nil) |
| 213 | |
Roland Levillain | 9b5fde9 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 214 | func TestPerSrcMutator(mctx android.BottomUpMutatorContext) { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 215 | if m, ok := mctx.Module().(*Module); ok { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 216 | if test, ok := m.linker.(testPerSrc); ok { |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 217 | numTests := len(test.srcs()) |
| 218 | if test.testPerSrc() && numTests > 0 { |
Chih-Hung Hsieh | a5f22ed | 2019-10-24 20:47:54 -0700 | [diff] [blame] | 219 | if duplicate, found := android.CheckDuplicate(test.srcs()); found { |
Jooyung Han | a61ff2c | 2019-02-28 18:06:34 +0900 | [diff] [blame] | 220 | mctx.PropertyErrorf("srcs", "found a duplicate entry %q", duplicate) |
| 221 | return |
| 222 | } |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 223 | testNames := make([]string, numTests) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 224 | for i, src := range test.srcs() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 225 | testNames[i] = strings.TrimSuffix(filepath.Base(src), filepath.Ext(src)) |
| 226 | } |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 227 | // In addition to creating one variation per test source file, |
| 228 | // create an additional "all tests" variation named "", and have it |
| 229 | // depends on all other test_per_src variations. This is useful to |
| 230 | // create subsequent dependencies of a given module on all |
| 231 | // test_per_src variations created above: by depending on |
| 232 | // variation "", that module will transitively depend on all the |
| 233 | // other test_per_src variations without the need to know their |
| 234 | // name or even their number. |
| 235 | testNames = append(testNames, "") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 236 | tests := mctx.CreateLocalVariations(testNames...) |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 237 | allTests := tests[numTests] |
| 238 | allTests.(*Module).linker.(testPerSrc).unsetSrc() |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 239 | // Prevent the "all tests" variation from being installable nor |
| 240 | // exporting to Make, as it won't create any output file. |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 241 | allTests.(*Module).Properties.PreventInstall = true |
| 242 | allTests.(*Module).Properties.HideFromMake = true |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 243 | for i, src := range test.srcs() { |
| 244 | tests[i].(*Module).linker.(testPerSrc).setSrc(testNames[i], src) |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 245 | mctx.AddInterVariantDependency(testPerSrcDepTag, allTests, tests[i]) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 246 | } |
Colin Cross | 90dab34 | 2020-08-21 15:55:50 -0700 | [diff] [blame] | 247 | mctx.AliasVariation("") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 248 | } |
| 249 | } |
| 250 | } |
| 251 | } |
| 252 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 253 | type testDecorator struct { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 254 | LinkerProperties TestLinkerProperties |
| 255 | InstallerProperties TestInstallerProperties |
| 256 | installer *baseInstaller |
| 257 | linker *baseLinker |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 260 | func (test *testDecorator) gtest() bool { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 261 | return BoolDefault(test.LinkerProperties.Gtest, true) |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 262 | } |
| 263 | |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 264 | func (test *testDecorator) isolated(ctx BaseModuleContext) bool { |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 265 | return BoolDefault(test.LinkerProperties.Isolated, false) |
| 266 | } |
| 267 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 268 | // NOTE: Keep this in sync with cc/cc_test.bzl#gtest_copts |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 269 | func (test *testDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 270 | if !test.gtest() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 271 | return flags |
| 272 | } |
| 273 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 274 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_HAS_STD_STRING") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 275 | if ctx.Host() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 276 | flags.Local.CFlags = append(flags.Local.CFlags, "-O0", "-g") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 277 | |
| 278 | switch ctx.Os() { |
| 279 | case android.Windows: |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 280 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_WINDOWS") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 281 | case android.Linux: |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 282 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_LINUX") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 283 | case android.Darwin: |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 284 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_MAC") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 285 | } |
| 286 | } else { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 287 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_LINUX_ANDROID") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | return flags |
| 291 | } |
| 292 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 293 | func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps { |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 294 | if test.gtest() { |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 295 | if ctx.useSdk() && ctx.Device() { |
Dan Albert | 7dd5899 | 2018-02-09 15:22:59 -0800 | [diff] [blame] | 296 | deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++") |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 297 | } else if test.isolated(ctx) { |
Christopher Ferris | 9df92d6 | 2018-08-21 12:40:08 -0700 | [diff] [blame] | 298 | deps.StaticLibs = append(deps.StaticLibs, "libgtest_isolated_main") |
Christopher Ferris | 34cbba6 | 2019-07-17 15:46:29 -0700 | [diff] [blame] | 299 | // The isolated library requires liblog, but adding it |
| 300 | // as a static library means unit tests cannot override |
| 301 | // liblog functions. Instead make it a shared library |
| 302 | // dependency. |
| 303 | deps.SharedLibs = append(deps.SharedLibs, "liblog") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 304 | } else { |
| 305 | deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest") |
| 306 | } |
| 307 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 308 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 309 | return deps |
| 310 | } |
| 311 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 312 | func (test *testDecorator) linkerInit(ctx BaseModuleContext, linker *baseLinker) { |
yangbill | b3174d1 | 2018-05-07 06:41:20 +0000 | [diff] [blame] | 313 | // 1. Add ../../lib[64] to rpath so that out/host/linux-x86/nativetest/<test dir>/<test> can |
Colin Cross | bd75e1d | 2017-06-30 17:27:55 -0700 | [diff] [blame] | 314 | // find out/host/linux-x86/lib[64]/library.so |
yangbill | b3174d1 | 2018-05-07 06:41:20 +0000 | [diff] [blame] | 315 | // 2. Add ../../../lib[64] to rpath so that out/host/linux-x86/testcases/<test dir>/<CPU>/<test> can |
| 316 | // also find out/host/linux-x86/lib[64]/library.so |
| 317 | runpaths := []string{"../../lib", "../../../lib"} |
| 318 | for _, runpath := range runpaths { |
| 319 | if ctx.toolchain().Is64Bit() { |
| 320 | runpath += "64" |
| 321 | } |
| 322 | linker.dynamicProperties.RunPaths = append(linker.dynamicProperties.RunPaths, runpath) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 323 | } |
Colin Cross | bd75e1d | 2017-06-30 17:27:55 -0700 | [diff] [blame] | 324 | |
| 325 | // add "" to rpath so that test binaries can find libraries in their own test directory |
| 326 | linker.dynamicProperties.RunPaths = append(linker.dynamicProperties.RunPaths, "") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 329 | func (test *testDecorator) linkerProps() []interface{} { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 330 | return []interface{}{&test.LinkerProperties} |
| 331 | } |
| 332 | |
| 333 | func (test *testDecorator) installerProps() []interface{} { |
| 334 | return []interface{}{&test.InstallerProperties} |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 337 | func NewTestInstaller() *baseInstaller { |
| 338 | return NewBaseInstaller("nativetest", "nativetest64", InstallInData) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 341 | type testBinary struct { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 342 | *testDecorator |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 343 | *binaryDecorator |
| 344 | *baseCompiler |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 345 | Properties TestBinaryProperties |
| 346 | data []android.DataPath |
| 347 | testConfig android.Path |
| 348 | extraTestConfigs android.Paths |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | func (test *testBinary) linkerProps() []interface{} { |
| 352 | props := append(test.testDecorator.linkerProps(), test.binaryDecorator.linkerProps()...) |
| 353 | props = append(props, &test.Properties) |
| 354 | return props |
| 355 | } |
| 356 | |
| 357 | func (test *testBinary) linkerInit(ctx BaseModuleContext) { |
| 358 | test.testDecorator.linkerInit(ctx, test.binaryDecorator.baseLinker) |
| 359 | test.binaryDecorator.linkerInit(ctx) |
| 360 | } |
| 361 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 362 | func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 363 | deps = test.testDecorator.linkerDeps(ctx, deps) |
| 364 | deps = test.binaryDecorator.linkerDeps(ctx, deps) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 365 | deps.DataLibs = append(deps.DataLibs, test.Properties.Data_libs...) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 366 | deps.DataBins = append(deps.DataBins, test.Properties.Data_bins...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 367 | return deps |
| 368 | } |
| 369 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 370 | func (test *testBinary) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
| 371 | flags = test.binaryDecorator.linkerFlags(ctx, flags) |
| 372 | flags = test.testDecorator.linkerFlags(ctx, flags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 373 | return flags |
| 374 | } |
| 375 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 376 | func (test *testBinary) installerProps() []interface{} { |
| 377 | return append(test.baseInstaller.installerProps(), test.testDecorator.installerProps()...) |
| 378 | } |
| 379 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 380 | func (test *testBinary) install(ctx ModuleContext, file android.Path) { |
Guang Zhu | 5c97bc6 | 2021-09-22 04:19:19 +0000 | [diff] [blame] | 381 | // TODO: (b/167308193) Switch to /data/local/tests/unrestricted as the default install base. |
| 382 | testInstallBase := "/data/local/tmp" |
yangbill | 5ec4555 | 2020-08-13 16:16:56 +0800 | [diff] [blame] | 383 | if ctx.inVendor() || ctx.useVndk() { |
| 384 | testInstallBase = "/data/local/tests/vendor" |
| 385 | } |
| 386 | |
Chris Parsons | 216e10a | 2020-07-09 17:12:52 -0400 | [diff] [blame] | 387 | dataSrcPaths := android.PathsForModuleSrc(ctx, test.Properties.Data) |
| 388 | |
| 389 | for _, dataSrcPath := range dataSrcPaths { |
| 390 | test.data = append(test.data, android.DataPath{SrcPath: dataSrcPath}) |
| 391 | } |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 392 | |
| 393 | ctx.VisitDirectDepsWithTag(dataLibDepTag, func(dep android.Module) { |
| 394 | depName := ctx.OtherModuleName(dep) |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 395 | linkableDep, ok := dep.(LinkableInterface) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 396 | if !ok { |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 397 | ctx.ModuleErrorf("data_lib %q is not a LinkableInterface module", depName) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 398 | } |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 399 | if linkableDep.OutputFile().Valid() { |
Chris Parsons | 216e10a | 2020-07-09 17:12:52 -0400 | [diff] [blame] | 400 | test.data = append(test.data, |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 401 | android.DataPath{SrcPath: linkableDep.OutputFile().Path(), |
| 402 | RelativeInstallPath: linkableDep.RelativeInstallPath()}) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 403 | } |
| 404 | }) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 405 | ctx.VisitDirectDepsWithTag(dataBinDepTag, func(dep android.Module) { |
| 406 | depName := ctx.OtherModuleName(dep) |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 407 | linkableDep, ok := dep.(LinkableInterface) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 408 | if !ok { |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 409 | ctx.ModuleErrorf("data_bin %q is not a LinkableInterface module", depName) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 410 | } |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 411 | if linkableDep.OutputFile().Valid() { |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 412 | test.data = append(test.data, |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 413 | android.DataPath{SrcPath: linkableDep.OutputFile().Path(), |
| 414 | RelativeInstallPath: linkableDep.RelativeInstallPath()}) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 415 | } |
| 416 | }) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 417 | |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 418 | var configs []tradefed.Config |
easoncylee | 1e3fdcd | 2020-04-30 10:08:33 +0800 | [diff] [blame] | 419 | for _, module := range test.Properties.Test_mainline_modules { |
| 420 | configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module}) |
| 421 | } |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 422 | if Bool(test.Properties.Require_root) { |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 423 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", nil}) |
Dan Shi | bc0f260 | 2019-09-17 02:43:50 +0000 | [diff] [blame] | 424 | } else { |
| 425 | var options []tradefed.Option |
easoncylee | 1e3fdcd | 2020-04-30 10:08:33 +0800 | [diff] [blame] | 426 | options = append(options, tradefed.Option{Name: "force-root", Value: "false"}) |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 427 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", options}) |
Dan Shi | 20ccd21 | 2019-08-27 10:37:24 -0700 | [diff] [blame] | 428 | } |
| 429 | if Bool(test.Properties.Disable_framework) { |
| 430 | var options []tradefed.Option |
Dan Shi | 8aa4010 | 2020-05-12 13:50:12 -0700 | [diff] [blame] | 431 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.StopServicesSetup", options}) |
Julien Desprez | eb7398e | 2019-02-28 08:45:28 -0800 | [diff] [blame] | 432 | } |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 433 | if test.isolated(ctx) { |
easoncylee | 1e3fdcd | 2020-04-30 10:08:33 +0800 | [diff] [blame] | 434 | configs = append(configs, tradefed.Option{Name: "not-shardable", Value: "true"}) |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 435 | } |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 436 | if test.Properties.Test_options.Run_test_as != nil { |
easoncylee | 1e3fdcd | 2020-04-30 10:08:33 +0800 | [diff] [blame] | 437 | configs = append(configs, tradefed.Option{Name: "run-test-as", Value: String(test.Properties.Test_options.Run_test_as)}) |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 438 | } |
David Srbecky | 519db27 | 2020-06-18 18:07:00 +0100 | [diff] [blame] | 439 | for _, tag := range test.Properties.Test_options.Test_suite_tag { |
| 440 | configs = append(configs, tradefed.Option{Name: "test-suite-tag", Value: tag}) |
| 441 | } |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 442 | if test.Properties.Test_options.Min_shipping_api_level != nil { |
| 443 | if test.Properties.Test_options.Vsr_min_shipping_api_level != nil { |
| 444 | ctx.PropertyErrorf("test_options.min_shipping_api_level", "must not be set at the same time as 'vsr_min_shipping_api_level'.") |
| 445 | } |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 446 | var options []tradefed.Option |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 447 | options = append(options, tradefed.Option{Name: "min-api-level", Value: strconv.FormatInt(int64(*test.Properties.Test_options.Min_shipping_api_level), 10)}) |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 448 | configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suite.module.ShippingApiLevelModuleController", options}) |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 449 | } |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 450 | if test.Properties.Test_options.Vsr_min_shipping_api_level != nil { |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 451 | var options []tradefed.Option |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 452 | options = append(options, tradefed.Option{Name: "vsr-min-api-level", Value: strconv.FormatInt(int64(*test.Properties.Test_options.Vsr_min_shipping_api_level), 10)}) |
| 453 | configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suite.module.ShippingApiLevelModuleController", options}) |
| 454 | } |
| 455 | if test.Properties.Test_options.Min_vndk_version != nil { |
| 456 | var options []tradefed.Option |
| 457 | options = append(options, tradefed.Option{Name: "min-api-level", Value: strconv.FormatInt(int64(*test.Properties.Test_options.Min_vndk_version), 10)}) |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 458 | options = append(options, tradefed.Option{Name: "api-level-prop", Value: "ro.vndk.version"}) |
| 459 | configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suite.module.MinApiLevelModuleController", options}) |
| 460 | } |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 461 | |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 462 | test.testConfig = tradefed.AutoGenNativeTestConfig(ctx, test.Properties.Test_config, |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 463 | test.Properties.Test_config_template, test.testDecorator.InstallerProperties.Test_suites, configs, test.Properties.Auto_gen_config, testInstallBase) |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 464 | |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 465 | test.extraTestConfigs = android.PathsForModuleSrc(ctx, test.Properties.Test_options.Extra_test_configs) |
| 466 | |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 467 | test.binaryDecorator.baseInstaller.dir = "nativetest" |
| 468 | test.binaryDecorator.baseInstaller.dir64 = "nativetest64" |
Dan Willemsen | 3340d60 | 2016-12-27 14:40:40 -0800 | [diff] [blame] | 469 | |
| 470 | if !Bool(test.Properties.No_named_install_directory) { |
| 471 | test.binaryDecorator.baseInstaller.relative = ctx.ModuleName() |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 472 | } else if String(test.binaryDecorator.baseInstaller.Properties.Relative_install_path) == "" { |
Dan Willemsen | 3340d60 | 2016-12-27 14:40:40 -0800 | [diff] [blame] | 473 | ctx.PropertyErrorf("no_named_install_directory", "Module install directory may only be disabled if relative_install_path is set") |
| 474 | } |
| 475 | |
Julien Desprez | 8908b37 | 2021-02-04 10:10:16 -0800 | [diff] [blame] | 476 | if ctx.Host() && test.gtest() && test.Properties.Test_options.Unit_test == nil { |
Julien Desprez | 3b933d3 | 2021-01-14 11:49:15 -0800 | [diff] [blame] | 477 | test.Properties.Test_options.Unit_test = proptools.BoolPtr(true) |
| 478 | } |
Dan Willemsen | 1d577e2 | 2016-08-29 15:53:15 -0700 | [diff] [blame] | 479 | test.binaryDecorator.baseInstaller.install(ctx, file) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 480 | } |
| 481 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 482 | func NewTest(hod android.HostOrDeviceSupported, bazelable bool) *Module { |
| 483 | module, binary := newBinary(hod, bazelable) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 484 | module.multilib = android.MultilibBoth |
Dan Willemsen | 1d577e2 | 2016-08-29 15:53:15 -0700 | [diff] [blame] | 485 | binary.baseInstaller = NewTestInstaller() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 486 | |
| 487 | test := &testBinary{ |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 488 | testDecorator: &testDecorator{ |
| 489 | linker: binary.baseLinker, |
| 490 | installer: binary.baseInstaller, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 491 | }, |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 492 | binaryDecorator: binary, |
| 493 | baseCompiler: NewBaseCompiler(), |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 494 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 495 | module.compiler = test |
| 496 | module.linker = test |
| 497 | module.installer = test |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 498 | return module |
| 499 | } |
| 500 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 501 | type testLibrary struct { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 502 | *testDecorator |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 503 | *libraryDecorator |
| 504 | } |
| 505 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 506 | func (test *testLibrary) testLibrary() bool { |
| 507 | return true |
| 508 | } |
| 509 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 510 | func (test *testLibrary) linkerProps() []interface{} { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 511 | var props []interface{} |
| 512 | props = append(props, test.testDecorator.linkerProps()...) |
| 513 | return append(props, test.libraryDecorator.linkerProps()...) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | func (test *testLibrary) linkerInit(ctx BaseModuleContext) { |
| 517 | test.testDecorator.linkerInit(ctx, test.libraryDecorator.baseLinker) |
| 518 | test.libraryDecorator.linkerInit(ctx) |
| 519 | } |
| 520 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 521 | func (test *testLibrary) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 522 | deps = test.testDecorator.linkerDeps(ctx, deps) |
| 523 | deps = test.libraryDecorator.linkerDeps(ctx, deps) |
| 524 | return deps |
| 525 | } |
| 526 | |
| 527 | func (test *testLibrary) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
| 528 | flags = test.libraryDecorator.linkerFlags(ctx, flags) |
| 529 | flags = test.testDecorator.linkerFlags(ctx, flags) |
| 530 | return flags |
| 531 | } |
| 532 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 533 | func (test *testLibrary) installerProps() []interface{} { |
| 534 | return append(test.baseInstaller.installerProps(), test.testDecorator.installerProps()...) |
| 535 | } |
| 536 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 537 | func NewTestLibrary(hod android.HostOrDeviceSupported) *Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 538 | module, library := NewLibrary(android.HostAndDeviceSupported) |
Dan Willemsen | 28bda51 | 2016-08-31 16:32:55 -0700 | [diff] [blame] | 539 | library.baseInstaller = NewTestInstaller() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 540 | test := &testLibrary{ |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 541 | testDecorator: &testDecorator{ |
| 542 | linker: library.baseLinker, |
| 543 | installer: library.baseInstaller, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 544 | }, |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 545 | libraryDecorator: library, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 546 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 547 | module.linker = test |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 548 | module.installer = test |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 549 | module.bazelable = true |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 550 | return module |
| 551 | } |
| 552 | |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 553 | type BenchmarkProperties struct { |
Anders Lewis | b97e818 | 2017-07-14 15:20:13 -0700 | [diff] [blame] | 554 | // list of files or filegroup modules that provide data that should be installed alongside |
| 555 | // the test |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 556 | Data []string `android:"path"` |
Anders Lewis | b97e818 | 2017-07-14 15:20:13 -0700 | [diff] [blame] | 557 | |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 558 | // list of compatibility suites (for example "cts", "vts") that the module should be |
| 559 | // installed into. |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 560 | Test_suites []string `android:"arch_variant"` |
| 561 | |
| 562 | // the name of the test configuration (for example "AndroidTest.xml") that should be |
| 563 | // installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 564 | Test_config *string `android:"path,arch_variant"` |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 565 | |
| 566 | // the name of the test configuration template (for example "AndroidTestTemplate.xml") that |
| 567 | // should be installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 568 | Test_config_template *string `android:"path,arch_variant"` |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 569 | |
| 570 | // Add RootTargetPreparer to auto generated test config. This guarantees the test to run |
| 571 | // with root permission. |
| 572 | Require_root *bool |
Dan Shi | 6ffaaa8 | 2019-09-26 11:41:36 -0700 | [diff] [blame] | 573 | |
| 574 | // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml |
| 575 | // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true |
| 576 | // explicitly. |
| 577 | Auto_gen_config *bool |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 580 | type benchmarkDecorator struct { |
| 581 | *binaryDecorator |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 582 | Properties BenchmarkProperties |
Anders Lewis | b97e818 | 2017-07-14 15:20:13 -0700 | [diff] [blame] | 583 | data android.Paths |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 584 | testConfig android.Path |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 585 | } |
| 586 | |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 587 | func (benchmark *benchmarkDecorator) benchmarkBinary() bool { |
| 588 | return true |
| 589 | } |
| 590 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 591 | func (benchmark *benchmarkDecorator) linkerInit(ctx BaseModuleContext) { |
| 592 | runpath := "../../lib" |
| 593 | if ctx.toolchain().Is64Bit() { |
| 594 | runpath += "64" |
| 595 | } |
| 596 | benchmark.baseLinker.dynamicProperties.RunPaths = append(benchmark.baseLinker.dynamicProperties.RunPaths, runpath) |
| 597 | benchmark.binaryDecorator.linkerInit(ctx) |
| 598 | } |
| 599 | |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 600 | func (benchmark *benchmarkDecorator) linkerProps() []interface{} { |
| 601 | props := benchmark.binaryDecorator.linkerProps() |
| 602 | props = append(props, &benchmark.Properties) |
| 603 | return props |
| 604 | } |
| 605 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 606 | func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 607 | deps = benchmark.binaryDecorator.linkerDeps(ctx, deps) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 608 | deps.StaticLibs = append(deps.StaticLibs, "libgoogle-benchmark") |
| 609 | return deps |
| 610 | } |
| 611 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 612 | func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Path) { |
Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 613 | benchmark.data = android.PathsForModuleSrc(ctx, benchmark.Properties.Data) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 614 | |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 615 | var configs []tradefed.Config |
| 616 | if Bool(benchmark.Properties.Require_root) { |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 617 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", nil}) |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 618 | } |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 619 | benchmark.testConfig = tradefed.AutoGenNativeBenchmarkTestConfig(ctx, benchmark.Properties.Test_config, |
Dan Shi | 6ffaaa8 | 2019-09-26 11:41:36 -0700 | [diff] [blame] | 620 | benchmark.Properties.Test_config_template, benchmark.Properties.Test_suites, configs, benchmark.Properties.Auto_gen_config) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 621 | |
Colin Cross | 28690e9 | 2017-09-08 16:20:30 -0700 | [diff] [blame] | 622 | benchmark.binaryDecorator.baseInstaller.dir = filepath.Join("benchmarktest", ctx.ModuleName()) |
| 623 | benchmark.binaryDecorator.baseInstaller.dir64 = filepath.Join("benchmarktest64", ctx.ModuleName()) |
Dan Willemsen | 1d577e2 | 2016-08-29 15:53:15 -0700 | [diff] [blame] | 624 | benchmark.binaryDecorator.baseInstaller.install(ctx, file) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 627 | func NewBenchmark(hod android.HostOrDeviceSupported) *Module { |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 628 | module, binary := newBinary(hod, false) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 629 | module.multilib = android.MultilibBoth |
Colin Cross | 28690e9 | 2017-09-08 16:20:30 -0700 | [diff] [blame] | 630 | binary.baseInstaller = NewBaseInstaller("benchmarktest", "benchmarktest64", InstallInData) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 631 | |
| 632 | benchmark := &benchmarkDecorator{ |
| 633 | binaryDecorator: binary, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 634 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 635 | module.linker = benchmark |
| 636 | module.installer = benchmark |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 637 | return module |
| 638 | } |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 639 | |
| 640 | // binaryAttributes contains Bazel attributes corresponding to a cc test |
| 641 | type testBinaryAttributes struct { |
| 642 | binaryAttributes |
| 643 | |
| 644 | Gtest bool |
| 645 | Isolated bool |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | // testBinaryBp2build is the bp2build converter for cc_test modules. A cc_test's |
| 649 | // dependency graph and compilation/linking steps are functionally similar to a |
| 650 | // cc_binary, but has additional dependencies on test deps like gtest, and |
| 651 | // produces additional runfiles like XML plans for Tradefed orchestration |
| 652 | // |
| 653 | // TODO(b/244432609): handle `isolated` property. |
| 654 | // TODO(b/244432134): handle custom runpaths for tests that assume runfile layouts not |
| 655 | // default to bazel. (see linkerInit function) |
| 656 | // TODO(b/244432500): handle test.testConfig generation (see install function) |
| 657 | func testBinaryBp2build(ctx android.TopDownMutatorContext, m *Module) { |
| 658 | var testBinaryAttrs testBinaryAttributes |
| 659 | testBinaryAttrs.binaryAttributes = binaryBp2buildAttrs(ctx, m) |
| 660 | |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame^] | 661 | var data bazel.LabelListAttribute |
| 662 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 663 | testBinaryProps := m.GetArchVariantProperties(ctx, &TestBinaryProperties{}) |
| 664 | for axis, configToProps := range testBinaryProps { |
| 665 | for config, props := range configToProps { |
| 666 | if p, ok := props.(*TestBinaryProperties); ok { |
| 667 | // Combine data, data_bins and data_libs into a single 'data' attribute. |
| 668 | var combinedData bazel.LabelList |
| 669 | combinedData.Append(android.BazelLabelForModuleSrc(ctx, p.Data)) |
| 670 | combinedData.Append(android.BazelLabelForModuleDeps(ctx, p.Data_bins)) |
| 671 | combinedData.Append(android.BazelLabelForModuleDeps(ctx, p.Data_libs)) |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame^] | 672 | data.SetSelectValue(axis, config, combinedData) |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | } |
| 676 | |
| 677 | for _, propIntf := range m.GetProperties() { |
| 678 | if testLinkerProps, ok := propIntf.(*TestLinkerProperties); ok { |
| 679 | testBinaryAttrs.Gtest = proptools.BoolDefault(testLinkerProps.Gtest, true) |
| 680 | testBinaryAttrs.Isolated = proptools.BoolDefault(testLinkerProps.Isolated, true) |
| 681 | break |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | ctx.CreateBazelTargetModule( |
| 686 | bazel.BazelTargetModuleProperties{ |
| 687 | Rule_class: "cc_test", |
| 688 | Bzl_load_location: "//build/bazel/rules/cc:cc_test.bzl", |
| 689 | }, |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame^] | 690 | android.CommonAttributes{ |
| 691 | Name: m.Name(), |
| 692 | Data: data, |
| 693 | }, |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 694 | &testBinaryAttrs) |
| 695 | } |