Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2014 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
| 16 | |
Bob Badour | 3c53823 | 2021-02-12 21:26:48 -0800 | [diff] [blame] | 17 | package { |
| 18 | // See: http://go/android-license-faq |
| 19 | // A large-scale-change added 'default_applicable_licenses' to import |
| 20 | // all of the 'license_kinds' from "frameworks_native_license" |
| 21 | // to get the below license kinds: |
| 22 | // SPDX-license-identifier-Apache-2.0 |
| 23 | default_applicable_licenses: ["frameworks_native_license"], |
| 24 | } |
| 25 | |
Chih-Hung Hsieh | d1acbbc | 2017-10-05 13:38:28 -0700 | [diff] [blame] | 26 | cc_defaults { |
| 27 | name: "binder_test_defaults", |
| 28 | cflags: [ |
| 29 | "-Wall", |
| 30 | "-Werror", |
Chih-Hung Hsieh | d1acbbc | 2017-10-05 13:38:28 -0700 | [diff] [blame] | 31 | ], |
| 32 | } |
| 33 | |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 34 | cc_test { |
Steven Moreland | c7a30c8 | 2019-07-10 13:12:23 -0700 | [diff] [blame] | 35 | name: "binderDriverInterfaceTest", |
| 36 | defaults: ["binder_test_defaults"], |
Yifan Hong | 4e419d8 | 2021-04-26 11:32:56 -0700 | [diff] [blame] | 37 | header_libs: ["libbinder_headers"], |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 38 | srcs: ["binderDriverInterfaceTest.cpp"], |
Steven Moreland | ea7659e | 2022-02-03 00:04:06 +0000 | [diff] [blame] | 39 | test_suites: [ |
| 40 | "device-tests", |
| 41 | "vts", |
| 42 | ], |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Steven Moreland | cefba61 | 2020-11-05 22:57:06 +0000 | [diff] [blame] | 45 | // unit test only, which can run on host and doesn't use /dev/binder |
| 46 | cc_test { |
Steven Moreland | 2831860 | 2021-06-25 01:16:29 +0000 | [diff] [blame] | 47 | name: "binderUnitTest", |
Steven Moreland | cefba61 | 2020-11-05 22:57:06 +0000 | [diff] [blame] | 48 | host_supported: true, |
| 49 | target: { |
| 50 | darwin: { |
| 51 | enabled: false, |
| 52 | }, |
| 53 | }, |
Steven Moreland | ea7659e | 2022-02-03 00:04:06 +0000 | [diff] [blame] | 54 | srcs: [ |
| 55 | "binderParcelUnitTest.cpp", |
| 56 | "binderBinderUnitTest.cpp", |
Steven Moreland | cf37369 | 2022-01-21 23:55:15 +0000 | [diff] [blame] | 57 | "binderStatusUnitTest.cpp", |
Atneya Nair | 7ade4f4 | 2022-02-07 18:16:48 -0500 | [diff] [blame] | 58 | "binderMemoryHeapBaseUnitTest.cpp", |
Fabián Cañas | 08bdc77 | 2023-01-02 15:02:56 -0500 | [diff] [blame] | 59 | "binderRecordedTransactionTest.cpp", |
Steven Moreland | ea7659e | 2022-02-03 00:04:06 +0000 | [diff] [blame] | 60 | ], |
Steven Moreland | cefba61 | 2020-11-05 22:57:06 +0000 | [diff] [blame] | 61 | shared_libs: [ |
| 62 | "libbinder", |
Steven Moreland | f80809b | 2021-10-07 18:09:20 -0700 | [diff] [blame] | 63 | "libcutils", |
Steven Moreland | cefba61 | 2020-11-05 22:57:06 +0000 | [diff] [blame] | 64 | "libutils", |
| 65 | ], |
| 66 | test_suites: ["general-tests"], |
| 67 | } |
| 68 | |
Hsin-Yi Chen | ec18c02 | 2017-07-06 11:40:20 +0800 | [diff] [blame] | 69 | cc_test { |
Steven Moreland | a8244b9 | 2023-04-20 23:34:11 +0000 | [diff] [blame] | 70 | name: "binderRecordReplayTest", |
| 71 | srcs: ["binderRecordReplayTest.cpp"], |
Pawan Wagh | 76b1815 | 2023-12-01 14:30:26 +0000 | [diff] [blame] | 72 | cflags: [ |
| 73 | "-DBINDER_WITH_KERNEL_IPC", |
| 74 | ], |
Steven Moreland | a8244b9 | 2023-04-20 23:34:11 +0000 | [diff] [blame] | 75 | shared_libs: [ |
| 76 | "libbinder", |
| 77 | "libcutils", |
| 78 | "libutils", |
Pawan Wagh | 76b1815 | 2023-12-01 14:30:26 +0000 | [diff] [blame] | 79 | "liblog", |
Steven Moreland | a8244b9 | 2023-04-20 23:34:11 +0000 | [diff] [blame] | 80 | ], |
| 81 | static_libs: [ |
| 82 | "binderRecordReplayTestIface-cpp", |
Pawan Wagh | 8da4538 | 2023-05-11 08:08:50 +0000 | [diff] [blame] | 83 | "binderReadParcelIface-cpp", |
Pawan Wagh | 94bf303 | 2023-07-27 17:15:02 +0000 | [diff] [blame] | 84 | "libbinder_random_parcel_seeds", |
| 85 | "libbinder_random_parcel", |
Steven Moreland | a8244b9 | 2023-04-20 23:34:11 +0000 | [diff] [blame] | 86 | ], |
| 87 | test_suites: ["general-tests"], |
Steven Moreland | 4ed688d | 2023-05-03 23:03:56 +0000 | [diff] [blame] | 88 | require_root: true, |
Steven Moreland | a8244b9 | 2023-04-20 23:34:11 +0000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | aidl_interface { |
| 92 | name: "binderRecordReplayTestIface", |
| 93 | unstable: true, |
| 94 | srcs: [ |
| 95 | "IBinderRecordReplayTest.aidl", |
| 96 | ], |
Pawan Wagh | 8da4538 | 2023-05-11 08:08:50 +0000 | [diff] [blame] | 97 | imports: ["binderReadParcelIface"], |
| 98 | backend: { |
| 99 | java: { |
| 100 | enabled: true, |
| 101 | platform_apis: true, |
| 102 | }, |
Steven Moreland | 5981335 | 2024-02-08 23:52:11 +0000 | [diff] [blame^] | 103 | |
| 104 | // TODO: switch from FileDescriptor to ParcelFileDescriptor |
Pawan Wagh | 76b1815 | 2023-12-01 14:30:26 +0000 | [diff] [blame] | 105 | ndk: { |
| 106 | enabled: false, |
| 107 | }, |
Steven Moreland | 5981335 | 2024-02-08 23:52:11 +0000 | [diff] [blame^] | 108 | rust: { |
| 109 | enabled: false, |
| 110 | }, |
Pawan Wagh | 8da4538 | 2023-05-11 08:08:50 +0000 | [diff] [blame] | 111 | }, |
Steven Moreland | a8244b9 | 2023-04-20 23:34:11 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | cc_test { |
Steven Moreland | c7a30c8 | 2019-07-10 13:12:23 -0700 | [diff] [blame] | 115 | name: "binderLibTest", |
| 116 | defaults: ["binder_test_defaults"], |
Hsin-Yi Chen | ec18c02 | 2017-07-06 11:40:20 +0800 | [diff] [blame] | 117 | |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 118 | srcs: ["binderLibTest.cpp"], |
| 119 | shared_libs: [ |
Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 120 | "libbase", |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 121 | "libbinder", |
Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 122 | "liblog", |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 123 | "libutils", |
| 124 | ], |
Yifan Hong | bbd2a0d | 2021-05-07 22:12:23 -0700 | [diff] [blame] | 125 | static_libs: [ |
| 126 | "libgmock", |
| 127 | ], |
Steven Moreland | ea7659e | 2022-02-03 00:04:06 +0000 | [diff] [blame] | 128 | test_suites: [ |
| 129 | "device-tests", |
| 130 | "vts", |
| 131 | ], |
Dan Shi | 80ada59 | 2019-09-13 09:17:17 -0700 | [diff] [blame] | 132 | require_root: true, |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 135 | aidl_interface { |
| 136 | name: "binderRpcTestIface", |
Andrei Homescu | d65666d | 2023-03-03 07:28:02 +0000 | [diff] [blame] | 137 | vendor_available: true, |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 138 | host_supported: true, |
| 139 | unstable: true, |
| 140 | srcs: [ |
Yifan Hong | 1deca4b | 2021-09-10 16:16:44 -0700 | [diff] [blame] | 141 | "BinderRpcTestClientInfo.aidl", |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 142 | "BinderRpcTestServerConfig.aidl", |
Yifan Hong | 1deca4b | 2021-09-10 16:16:44 -0700 | [diff] [blame] | 143 | "BinderRpcTestServerInfo.aidl", |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 144 | "IBinderRpcCallback.aidl", |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 145 | "IBinderRpcSession.aidl", |
| 146 | "IBinderRpcTest.aidl", |
Yifan Hong | 1deca4b | 2021-09-10 16:16:44 -0700 | [diff] [blame] | 147 | "ParcelableCertificateData.aidl", |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 148 | ], |
Tomasz Wasilczyk | 7c511e9 | 2023-12-04 17:00:28 -0800 | [diff] [blame] | 149 | flags: [ |
| 150 | "-Werror", |
| 151 | "-Wno-mixed-oneway", |
| 152 | ], |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 153 | backend: { |
| 154 | java: { |
| 155 | enabled: false, |
| 156 | }, |
| 157 | }, |
| 158 | } |
| 159 | |
Yifan Hong | e0e5328 | 2021-09-23 18:37:21 -0700 | [diff] [blame] | 160 | cc_library_static { |
| 161 | name: "libbinder_tls_test_utils", |
| 162 | host_supported: true, |
Andrei Homescu | d65666d | 2023-03-03 07:28:02 +0000 | [diff] [blame] | 163 | vendor_available: true, |
Yifan Hong | e0e5328 | 2021-09-23 18:37:21 -0700 | [diff] [blame] | 164 | target: { |
| 165 | darwin: { |
| 166 | enabled: false, |
| 167 | }, |
| 168 | }, |
| 169 | defaults: [ |
| 170 | "binder_test_defaults", |
| 171 | "libbinder_tls_shared_deps", |
| 172 | ], |
| 173 | shared_libs: [ |
Yifan Hong | e0e5328 | 2021-09-23 18:37:21 -0700 | [diff] [blame] | 174 | "libbase", |
| 175 | "liblog", |
| 176 | ], |
| 177 | static_libs: [ |
| 178 | "libbinder_tls_static", |
| 179 | ], |
| 180 | srcs: [ |
| 181 | "RpcTlsTestUtils.cpp", |
| 182 | ], |
| 183 | export_include_dirs: [ |
| 184 | "include_tls_test_utils", |
| 185 | ], |
| 186 | visibility: [ |
| 187 | ":__subpackages__", |
| 188 | ], |
| 189 | } |
| 190 | |
Tomasz Wasilczyk | 26db5e4 | 2023-11-02 11:45:11 -0700 | [diff] [blame] | 191 | cc_library_static { |
| 192 | name: "libbinder_test_utils", |
| 193 | host_supported: true, |
| 194 | vendor_available: true, |
| 195 | target: { |
| 196 | darwin: { |
| 197 | enabled: false, |
| 198 | }, |
| 199 | }, |
| 200 | defaults: [ |
| 201 | "binder_test_defaults", |
| 202 | ], |
| 203 | shared_libs: [ |
| 204 | "libbase", |
| 205 | "liblog", |
| 206 | ], |
| 207 | srcs: [ |
| 208 | "FileUtils.cpp", |
| 209 | ], |
| 210 | visibility: [ |
| 211 | ":__subpackages__", |
| 212 | ], |
| 213 | } |
| 214 | |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 215 | cc_defaults { |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 216 | name: "binderRpcTest_common_defaults", |
Steven Moreland | f6ec463 | 2021-04-01 16:20:47 +0000 | [diff] [blame] | 217 | host_supported: true, |
| 218 | target: { |
| 219 | darwin: { |
| 220 | enabled: false, |
| 221 | }, |
| 222 | }, |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 223 | defaults: [ |
| 224 | "binder_test_defaults", |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 225 | ], |
Steven Moreland | 5553ac4 | 2020-11-11 02:14:45 +0000 | [diff] [blame] | 226 | |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 227 | static_libs: [ |
Tomasz Wasilczyk | 26db5e4 | 2023-11-02 11:45:11 -0700 | [diff] [blame] | 228 | "libbinder_test_utils", |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 229 | "libbinder_tls_static", |
| 230 | "libbinder_tls_test_utils", |
| 231 | "binderRpcTestIface-cpp", |
| 232 | "binderRpcTestIface-ndk", |
| 233 | ], |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | cc_defaults { |
| 237 | name: "binderRpcTest_service_defaults", |
| 238 | defaults: [ |
| 239 | "binderRpcTest_common_defaults", |
| 240 | ], |
| 241 | gtest: false, |
| 242 | auto_gen_config: false, |
| 243 | srcs: [ |
| 244 | "binderRpcTestCommon.cpp", |
| 245 | "binderRpcTestService.cpp", |
| 246 | ], |
| 247 | } |
| 248 | |
| 249 | cc_defaults { |
| 250 | name: "binderRpcTest_defaults", |
| 251 | target: { |
| 252 | android: { |
| 253 | test_suites: ["vts"], |
| 254 | }, |
| 255 | }, |
| 256 | defaults: [ |
| 257 | "binderRpcTest_common_defaults", |
| 258 | ], |
| 259 | |
| 260 | srcs: [ |
| 261 | "binderRpcTest.cpp", |
| 262 | "binderRpcTestCommon.cpp", |
Andrei Homescu | 9a9b1b4 | 2022-10-14 01:40:59 +0000 | [diff] [blame] | 263 | "binderRpcUniversalTests.cpp", |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 264 | ], |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 265 | |
Steven Moreland | 2053161 | 2023-04-04 18:03:24 +0000 | [diff] [blame] | 266 | // This test uses a lot of resources and takes a long time. Due to |
| 267 | // design of several tests, it is also very sensitive to resource |
| 268 | // contention on the device. b/276820894 |
| 269 | test_options: { |
| 270 | unit_test: false, |
Steven Moreland | f6b18f2 | 2023-12-16 04:46:22 +0000 | [diff] [blame] | 271 | test_runner_options: [ |
| 272 | { |
| 273 | name: "native-test-timeout", |
| 274 | value: "10m", |
| 275 | }, |
| 276 | ], |
Steven Moreland | 2053161 | 2023-04-04 18:03:24 +0000 | [diff] [blame] | 277 | }, |
| 278 | |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 279 | test_suites: ["general-tests"], |
| 280 | require_root: true, |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 281 | |
| 282 | data_bins: [ |
| 283 | "binder_rpc_test_service", |
| 284 | "binder_rpc_test_service_no_kernel", |
| 285 | "binder_rpc_test_service_single_threaded", |
| 286 | "binder_rpc_test_service_single_threaded_no_kernel", |
| 287 | ], |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 290 | cc_defaults { |
| 291 | name: "binderRpcTest_shared_defaults", |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 292 | cflags: [ |
| 293 | "-DBINDER_WITH_KERNEL_IPC", |
| 294 | ], |
| 295 | |
Steven Moreland | 5553ac4 | 2020-11-11 02:14:45 +0000 | [diff] [blame] | 296 | shared_libs: [ |
| 297 | "libbinder", |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 298 | "libbinder_ndk", |
Steven Moreland | 5553ac4 | 2020-11-11 02:14:45 +0000 | [diff] [blame] | 299 | "libbase", |
| 300 | "libutils", |
| 301 | "libcutils", |
| 302 | "liblog", |
| 303 | ], |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | cc_defaults { |
| 307 | name: "binderRpcTest_static_defaults", |
| 308 | |
| 309 | shared_libs: [ |
Andrei Homescu | 68a5561 | 2022-08-02 01:25:15 +0000 | [diff] [blame] | 310 | "liblog", |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 311 | "libutils", |
| 312 | // libcrypto_static is not visible to this module |
| 313 | "libcrypto", |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 314 | ], |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 315 | static_libs: [ |
| 316 | "libbase", |
| 317 | "libcutils", |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 318 | "libssl", |
| 319 | ], |
| 320 | |
| 321 | cflags: [ |
| 322 | // Disable tests that require shared libraries, |
| 323 | // e.g., libbinder.so or libbinder_ndk.so |
| 324 | "-DBINDER_TEST_NO_SHARED_LIBS", |
| 325 | ], |
| 326 | } |
| 327 | |
| 328 | cc_test { |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 329 | // The module name cannot start with "binderRpcTest" because |
| 330 | // then atest tries to execute it as part of binderRpcTest |
| 331 | name: "binder_rpc_test_service", |
| 332 | defaults: [ |
| 333 | "binderRpcTest_service_defaults", |
| 334 | "binderRpcTest_shared_defaults", |
| 335 | "libbinder_tls_shared_deps", |
| 336 | ], |
| 337 | } |
| 338 | |
| 339 | cc_test { |
| 340 | name: "binder_rpc_test_service_no_kernel", |
| 341 | defaults: [ |
| 342 | "binderRpcTest_service_defaults", |
| 343 | "binderRpcTest_static_defaults", |
| 344 | ], |
| 345 | static_libs: [ |
| 346 | "libbinder_rpc_no_kernel", |
| 347 | ], |
| 348 | } |
| 349 | |
| 350 | cc_test { |
| 351 | name: "binder_rpc_test_service_single_threaded", |
| 352 | defaults: [ |
| 353 | "binderRpcTest_service_defaults", |
| 354 | "binderRpcTest_static_defaults", |
| 355 | ], |
| 356 | cflags: [ |
| 357 | "-DBINDER_RPC_SINGLE_THREADED", |
| 358 | "-DBINDER_WITH_KERNEL_IPC", |
| 359 | ], |
| 360 | static_libs: [ |
| 361 | "libbinder_rpc_single_threaded", |
| 362 | ], |
| 363 | } |
| 364 | |
| 365 | cc_test { |
| 366 | name: "binder_rpc_test_service_single_threaded_no_kernel", |
| 367 | defaults: [ |
| 368 | "binderRpcTest_service_defaults", |
| 369 | "binderRpcTest_static_defaults", |
| 370 | ], |
| 371 | cflags: [ |
| 372 | "-DBINDER_RPC_SINGLE_THREADED", |
| 373 | ], |
| 374 | static_libs: [ |
| 375 | "libbinder_rpc_single_threaded_no_kernel", |
| 376 | ], |
| 377 | } |
| 378 | |
Andrei Homescu | 9d8adb1 | 2022-08-02 04:38:30 +0000 | [diff] [blame] | 379 | cc_binary { |
| 380 | name: "binderRpcTestService_on_trusty_mock", |
| 381 | defaults: [ |
| 382 | "trusty_mock_defaults", |
| 383 | ], |
| 384 | |
| 385 | srcs: [ |
| 386 | "binderRpcTestCommon.cpp", |
| 387 | "binderRpcTestServiceTrusty.cpp", |
| 388 | ], |
| 389 | |
| 390 | shared_libs: [ |
| 391 | "libbinder_on_trusty_mock", |
| 392 | "libbase", |
| 393 | "libutils", |
| 394 | "libcutils", |
| 395 | ], |
| 396 | |
| 397 | static_libs: [ |
| 398 | "binderRpcTestIface-cpp", |
| 399 | ], |
| 400 | } |
| 401 | |
Andrei Homescu | 4d9420e | 2023-01-31 01:38:48 +0000 | [diff] [blame] | 402 | cc_binary { |
| 403 | name: "binderRpcTest_on_trusty_mock", |
| 404 | defaults: [ |
| 405 | "trusty_mock_defaults", |
| 406 | ], |
| 407 | |
| 408 | srcs: [ |
| 409 | "binderRpcUniversalTests.cpp", |
| 410 | "binderRpcTestCommon.cpp", |
| 411 | "binderRpcTestTrusty.cpp", |
| 412 | ], |
| 413 | |
| 414 | shared_libs: [ |
| 415 | "libbinder_on_trusty_mock", |
| 416 | "libbase", |
| 417 | "libutils", |
| 418 | "libcutils", |
| 419 | ], |
| 420 | |
| 421 | static_libs: [ |
| 422 | "binderRpcTestIface-cpp", |
| 423 | "libgtest", |
| 424 | ], |
| 425 | } |
| 426 | |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 427 | cc_test { |
| 428 | name: "binderRpcTest", |
| 429 | defaults: [ |
| 430 | "binderRpcTest_defaults", |
| 431 | "binderRpcTest_shared_defaults", |
| 432 | "libbinder_tls_shared_deps", |
| 433 | ], |
Andrei Homescu | 875996f | 2022-08-24 04:25:11 +0000 | [diff] [blame] | 434 | |
| 435 | // Add the Trusty mock library as a fake dependency so it gets built |
| 436 | required: [ |
| 437 | "libbinder_on_trusty_mock", |
Andrei Homescu | 9d8adb1 | 2022-08-02 04:38:30 +0000 | [diff] [blame] | 438 | "binderRpcTestService_on_trusty_mock", |
Andrei Homescu | 4d9420e | 2023-01-31 01:38:48 +0000 | [diff] [blame] | 439 | "binderRpcTest_on_trusty_mock", |
Andrei Homescu | 875996f | 2022-08-24 04:25:11 +0000 | [diff] [blame] | 440 | ], |
Andrei Homescu | 2a29801 | 2022-06-15 01:08:54 +0000 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | cc_test { |
Andrei Homescu | 12106de | 2022-04-27 04:42:21 +0000 | [diff] [blame] | 444 | name: "binderRpcTestNoKernel", |
| 445 | defaults: [ |
| 446 | "binderRpcTest_defaults", |
| 447 | "binderRpcTest_static_defaults", |
| 448 | ], |
| 449 | static_libs: [ |
| 450 | "libbinder_rpc_no_kernel", |
| 451 | ], |
| 452 | } |
| 453 | |
| 454 | cc_test { |
| 455 | name: "binderRpcTestSingleThreaded", |
| 456 | defaults: [ |
| 457 | "binderRpcTest_defaults", |
| 458 | "binderRpcTest_static_defaults", |
| 459 | ], |
| 460 | cflags: [ |
| 461 | "-DBINDER_RPC_SINGLE_THREADED", |
| 462 | "-DBINDER_WITH_KERNEL_IPC", |
| 463 | ], |
| 464 | static_libs: [ |
| 465 | "libbinder_rpc_single_threaded", |
| 466 | ], |
| 467 | } |
| 468 | |
| 469 | cc_test { |
| 470 | name: "binderRpcTestSingleThreadedNoKernel", |
| 471 | defaults: [ |
| 472 | "binderRpcTest_defaults", |
| 473 | "binderRpcTest_static_defaults", |
| 474 | ], |
| 475 | cflags: [ |
| 476 | "-DBINDER_RPC_SINGLE_THREADED", |
| 477 | ], |
| 478 | static_libs: [ |
| 479 | "libbinder_rpc_single_threaded_no_kernel", |
| 480 | ], |
Steven Moreland | 5553ac4 | 2020-11-11 02:14:45 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Yifan Hong | ff73aa9 | 2021-09-17 21:28:01 -0700 | [diff] [blame] | 483 | cc_test { |
Andrei Homescu | d65666d | 2023-03-03 07:28:02 +0000 | [diff] [blame] | 484 | name: "binderRpcToTrustyTest", |
| 485 | vendor: true, |
| 486 | host_supported: false, |
| 487 | defaults: [ |
| 488 | "binderRpcTest_common_defaults", |
| 489 | "binderRpcTest_static_defaults", |
| 490 | ], |
| 491 | |
| 492 | srcs: [ |
| 493 | "binderRpcTest.cpp", |
| 494 | "binderRpcTestCommon.cpp", |
| 495 | "binderRpcUniversalTests.cpp", |
| 496 | ], |
| 497 | |
| 498 | cflags: [ |
| 499 | "-DBINDER_RPC_TO_TRUSTY_TEST", |
| 500 | ], |
| 501 | |
| 502 | static_libs: [ |
| 503 | // We want to link libbinder statically so we can push the binary |
| 504 | // to the device for testing independently of the library |
| 505 | "libbinder_rpc_no_kernel", |
| 506 | "libbinder_trusty", |
| 507 | "libtrusty", |
| 508 | ], |
| 509 | |
| 510 | test_suites: ["device-tests"], |
| 511 | require_root: true, |
| 512 | } |
| 513 | |
| 514 | cc_test { |
Yifan Hong | ff73aa9 | 2021-09-17 21:28:01 -0700 | [diff] [blame] | 515 | name: "RpcTlsUtilsTest", |
| 516 | host_supported: true, |
| 517 | target: { |
| 518 | darwin: { |
| 519 | enabled: false, |
| 520 | }, |
| 521 | android: { |
| 522 | test_suites: ["vts"], |
| 523 | }, |
| 524 | }, |
| 525 | defaults: [ |
| 526 | "binder_test_defaults", |
| 527 | "libbinder_tls_shared_deps", |
| 528 | ], |
| 529 | srcs: [ |
Yifan Hong | ff73aa9 | 2021-09-17 21:28:01 -0700 | [diff] [blame] | 530 | "RpcTlsUtilsTest.cpp", |
| 531 | ], |
| 532 | shared_libs: [ |
| 533 | "libbinder", |
| 534 | "libbase", |
| 535 | "libutils", |
| 536 | "liblog", |
| 537 | ], |
| 538 | static_libs: [ |
Yifan Hong | e0e5328 | 2021-09-23 18:37:21 -0700 | [diff] [blame] | 539 | "libbinder_tls_test_utils", |
Yifan Hong | ff73aa9 | 2021-09-17 21:28:01 -0700 | [diff] [blame] | 540 | "libbinder_tls_static", |
| 541 | ], |
Steven Moreland | ea7659e | 2022-02-03 00:04:06 +0000 | [diff] [blame] | 542 | test_suites: [ |
| 543 | "general-tests", |
| 544 | "device-tests", |
| 545 | ], |
Yifan Hong | ff73aa9 | 2021-09-17 21:28:01 -0700 | [diff] [blame] | 546 | } |
| 547 | |
Steven Moreland | cda6085 | 2021-04-14 23:45:32 +0000 | [diff] [blame] | 548 | cc_benchmark { |
| 549 | name: "binderRpcBenchmark", |
Yifan Hong | aecdd17 | 2021-09-21 14:53:13 -0700 | [diff] [blame] | 550 | defaults: [ |
| 551 | "binder_test_defaults", |
| 552 | "libbinder_tls_shared_deps", |
| 553 | ], |
Steven Moreland | cda6085 | 2021-04-14 23:45:32 +0000 | [diff] [blame] | 554 | host_supported: true, |
Steven Moreland | 722b490 | 2021-04-16 16:30:18 +0000 | [diff] [blame] | 555 | target: { |
| 556 | darwin: { |
| 557 | enabled: false, |
| 558 | }, |
| 559 | }, |
Steven Moreland | cda6085 | 2021-04-14 23:45:32 +0000 | [diff] [blame] | 560 | srcs: [ |
| 561 | "binderRpcBenchmark.cpp", |
| 562 | "IBinderRpcBenchmark.aidl", |
| 563 | ], |
| 564 | shared_libs: [ |
| 565 | "libbase", |
| 566 | "libbinder", |
| 567 | "liblog", |
| 568 | "libutils", |
| 569 | ], |
Yifan Hong | aecdd17 | 2021-09-21 14:53:13 -0700 | [diff] [blame] | 570 | static_libs: [ |
Yifan Hong | e0e5328 | 2021-09-23 18:37:21 -0700 | [diff] [blame] | 571 | "libbinder_tls_test_utils", |
Yifan Hong | aecdd17 | 2021-09-21 14:53:13 -0700 | [diff] [blame] | 572 | "libbinder_tls_static", |
| 573 | ], |
Steven Moreland | cda6085 | 2021-04-14 23:45:32 +0000 | [diff] [blame] | 574 | } |
| 575 | |
Steven Moreland | 5553ac4 | 2020-11-11 02:14:45 +0000 | [diff] [blame] | 576 | cc_test { |
Steven Moreland | 59640db | 2021-07-22 17:19:31 -0700 | [diff] [blame] | 577 | name: "binderRpcWireProtocolTest", |
| 578 | host_supported: true, |
| 579 | target: { |
| 580 | darwin: { |
| 581 | enabled: false, |
| 582 | }, |
| 583 | android: { |
| 584 | test_suites: ["vts"], |
| 585 | }, |
| 586 | }, |
| 587 | defaults: [ |
| 588 | "binder_test_defaults", |
| 589 | ], |
| 590 | srcs: [ |
| 591 | "binderRpcWireProtocolTest.cpp", |
| 592 | ], |
| 593 | shared_libs: [ |
| 594 | "libbinder", |
| 595 | "libbase", |
| 596 | "libutils", |
| 597 | "libcutils", |
| 598 | "liblog", |
| 599 | ], |
| 600 | test_suites: ["general-tests"], |
| 601 | } |
| 602 | |
| 603 | cc_test { |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 604 | name: "binderThroughputTest", |
Chih-Hung Hsieh | d1acbbc | 2017-10-05 13:38:28 -0700 | [diff] [blame] | 605 | defaults: ["binder_test_defaults"], |
Steven Moreland | c7a30c8 | 2019-07-10 13:12:23 -0700 | [diff] [blame] | 606 | srcs: ["binderThroughputTest.cpp"], |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 607 | shared_libs: [ |
| 608 | "libbinder", |
| 609 | "libutils", |
| 610 | ], |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 611 | cflags: [ |
| 612 | "-g", |
Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 613 | "-Wno-missing-field-initializers", |
| 614 | "-Wno-sign-compare", |
| 615 | "-O3", |
| 616 | ], |
| 617 | } |
Wei Wang | 78f2a37 | 2016-10-20 23:18:17 -0700 | [diff] [blame] | 618 | |
| 619 | cc_test { |
| 620 | name: "binderTextOutputTest", |
Chih-Hung Hsieh | d1acbbc | 2017-10-05 13:38:28 -0700 | [diff] [blame] | 621 | defaults: ["binder_test_defaults"], |
Steven Moreland | c7a30c8 | 2019-07-10 13:12:23 -0700 | [diff] [blame] | 622 | srcs: ["binderTextOutputTest.cpp"], |
Wei Wang | 78f2a37 | 2016-10-20 23:18:17 -0700 | [diff] [blame] | 623 | shared_libs: [ |
| 624 | "libbinder", |
| 625 | "libutils", |
| 626 | "libbase", |
| 627 | ], |
Steven Moreland | 67812c2 | 2019-07-10 13:50:40 -0700 | [diff] [blame] | 628 | test_suites: ["device-tests"], |
Wei Wang | 78f2a37 | 2016-10-20 23:18:17 -0700 | [diff] [blame] | 629 | } |
Howard Chen | c135dbc | 2017-03-25 17:12:59 +0800 | [diff] [blame] | 630 | |
| 631 | cc_test { |
| 632 | name: "schd-dbg", |
Chih-Hung Hsieh | d1acbbc | 2017-10-05 13:38:28 -0700 | [diff] [blame] | 633 | defaults: ["binder_test_defaults"], |
Steven Moreland | c7a30c8 | 2019-07-10 13:12:23 -0700 | [diff] [blame] | 634 | srcs: ["schd-dbg.cpp"], |
Howard Chen | c135dbc | 2017-03-25 17:12:59 +0800 | [diff] [blame] | 635 | shared_libs: [ |
| 636 | "libbinder", |
| 637 | "libutils", |
| 638 | "libbase", |
| 639 | ], |
| 640 | } |
Dan Stoza | d630e52 | 2016-12-01 15:16:31 -0800 | [diff] [blame] | 641 | |
| 642 | cc_test { |
| 643 | name: "binderSafeInterfaceTest", |
Chih-Hung Hsieh | d1acbbc | 2017-10-05 13:38:28 -0700 | [diff] [blame] | 644 | defaults: ["binder_test_defaults"], |
Steven Moreland | c7a30c8 | 2019-07-10 13:12:23 -0700 | [diff] [blame] | 645 | srcs: ["binderSafeInterfaceTest.cpp"], |
Dan Stoza | d630e52 | 2016-12-01 15:16:31 -0800 | [diff] [blame] | 646 | |
| 647 | cppflags: [ |
Colin Cross | 1383d9f | 2019-11-06 13:33:40 -0800 | [diff] [blame] | 648 | "-Wextra", |
Dan Stoza | d630e52 | 2016-12-01 15:16:31 -0800 | [diff] [blame] | 649 | ], |
| 650 | |
| 651 | cpp_std: "experimental", |
| 652 | gnu_extensions: false, |
| 653 | |
| 654 | shared_libs: [ |
| 655 | "libbinder", |
Dan Stoza | 2537db7 | 2017-04-07 16:32:38 -0700 | [diff] [blame] | 656 | "libcutils", |
Dan Stoza | d630e52 | 2016-12-01 15:16:31 -0800 | [diff] [blame] | 657 | "liblog", |
| 658 | "libutils", |
| 659 | ], |
Steven Moreland | ea7659e | 2022-02-03 00:04:06 +0000 | [diff] [blame] | 660 | test_suites: [ |
| 661 | "device-tests", |
| 662 | "vts", |
| 663 | ], |
Dan Shi | 80ada59 | 2019-09-13 09:17:17 -0700 | [diff] [blame] | 664 | require_root: true, |
Dan Stoza | d630e52 | 2016-12-01 15:16:31 -0800 | [diff] [blame] | 665 | } |
Steven Moreland | dea3cf9 | 2019-07-16 18:06:55 -0700 | [diff] [blame] | 666 | |
Steven Moreland | f23dae2 | 2020-10-27 19:34:55 +0000 | [diff] [blame] | 667 | cc_test { |
| 668 | name: "binderClearBufTest", |
| 669 | defaults: ["binder_test_defaults"], |
| 670 | srcs: [ |
| 671 | "binderClearBufTest.cpp", |
| 672 | ], |
| 673 | |
| 674 | shared_libs: [ |
| 675 | "libbase", |
| 676 | "libbinder", |
| 677 | "liblog", |
| 678 | "libutils", |
| 679 | ], |
| 680 | |
| 681 | test_suites: ["general-tests"], |
| 682 | require_root: true, |
| 683 | } |
| 684 | |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 685 | aidl_interface { |
| 686 | name: "binderStabilityTestIface", |
Jiyong Park | 701fa1a | 2020-04-13 12:55:44 +0900 | [diff] [blame] | 687 | unstable: true, |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 688 | srcs: [ |
| 689 | "IBinderStabilityTest.aidl", |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 690 | ], |
Steven Moreland | 37aff18 | 2021-03-26 02:04:16 +0000 | [diff] [blame] | 691 | backend: { |
| 692 | java: { |
| 693 | enabled: false, |
| 694 | }, |
| 695 | }, |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 696 | } |
| 697 | |
Steven Moreland | dea3cf9 | 2019-07-16 18:06:55 -0700 | [diff] [blame] | 698 | cc_test { |
| 699 | name: "binderStabilityTest", |
| 700 | defaults: ["binder_test_defaults"], |
| 701 | srcs: [ |
| 702 | "binderStabilityTest.cpp", |
Steven Moreland | dea3cf9 | 2019-07-16 18:06:55 -0700 | [diff] [blame] | 703 | ], |
| 704 | |
Steven Moreland | 13f8466 | 2020-07-23 21:30:41 +0000 | [diff] [blame] | 705 | // critical that libbinder/libbinder_ndk are shared for VTS |
Steven Moreland | dea3cf9 | 2019-07-16 18:06:55 -0700 | [diff] [blame] | 706 | shared_libs: [ |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 707 | "libbinder_ndk", |
Steven Moreland | dea3cf9 | 2019-07-16 18:06:55 -0700 | [diff] [blame] | 708 | "libbinder", |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 709 | "liblog", |
Steven Moreland | dea3cf9 | 2019-07-16 18:06:55 -0700 | [diff] [blame] | 710 | "libutils", |
| 711 | ], |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 712 | static_libs: [ |
| 713 | "binderStabilityTestIface-cpp", |
Jiyong Park | 9a9427c | 2021-08-09 09:01:15 +0900 | [diff] [blame] | 714 | "binderStabilityTestIface-ndk", |
Steven Moreland | 12300a0 | 2019-08-02 13:27:15 -0700 | [diff] [blame] | 715 | ], |
| 716 | |
Steven Moreland | ea7659e | 2022-02-03 00:04:06 +0000 | [diff] [blame] | 717 | test_suites: [ |
| 718 | "device-tests", |
| 719 | "vts", |
| 720 | ], |
Dan Shi | 302709b | 2019-09-19 15:28:15 -0700 | [diff] [blame] | 721 | require_root: true, |
Steven Moreland | dea3cf9 | 2019-07-16 18:06:55 -0700 | [diff] [blame] | 722 | } |
Steven Moreland | 042ae82 | 2020-05-27 17:45:17 +0000 | [diff] [blame] | 723 | |
| 724 | cc_test { |
| 725 | name: "binderAllocationLimits", |
| 726 | defaults: ["binder_test_defaults"], |
| 727 | srcs: ["binderAllocationLimits.cpp"], |
| 728 | shared_libs: [ |
| 729 | "libbinder", |
| 730 | "liblog", |
Steven Moreland | 66acefe | 2022-09-09 00:34:40 +0000 | [diff] [blame] | 731 | "libcutils", |
Steven Moreland | 042ae82 | 2020-05-27 17:45:17 +0000 | [diff] [blame] | 732 | "libutils", |
| 733 | "libutilscallstack", |
| 734 | "libbase", |
| 735 | ], |
| 736 | test_suites: ["device-tests"], |
| 737 | require_root: true, |
| 738 | } |
Andy Hung | 73a1470 | 2020-11-24 13:04:46 -0800 | [diff] [blame] | 739 | |
| 740 | cc_benchmark { |
| 741 | name: "binderParcelBenchmark", |
| 742 | defaults: ["binder_test_defaults"], |
| 743 | srcs: ["binderParcelBenchmark.cpp"], |
| 744 | shared_libs: [ |
| 745 | "libbase", |
| 746 | "libbinder", |
| 747 | "liblog", |
| 748 | "libutils", |
| 749 | ], |
Steven Moreland | 9b254dd | 2023-05-11 00:37:55 +0000 | [diff] [blame] | 750 | test_suites: ["general-tests"], |
Andy Hung | 73a1470 | 2020-11-24 13:04:46 -0800 | [diff] [blame] | 751 | } |
Yifan Hong | af766e6 | 2021-06-14 13:24:19 -0700 | [diff] [blame] | 752 | |
| 753 | cc_test_host { |
| 754 | name: "binderUtilsHostTest", |
| 755 | defaults: ["binder_test_defaults"], |
| 756 | srcs: ["binderUtilsHostTest.cpp"], |
| 757 | shared_libs: [ |
| 758 | "libbase", |
| 759 | "libbinder", |
| 760 | ], |
| 761 | static_libs: [ |
| 762 | "libgmock", |
| 763 | ], |
| 764 | test_suites: ["general-tests"], |
Yifan Hong | 44dec54 | 2021-06-22 10:47:44 -0700 | [diff] [blame] | 765 | target: { |
| 766 | darwin: { |
| 767 | enabled: false, |
| 768 | }, |
| 769 | }, |
Yifan Hong | af766e6 | 2021-06-14 13:24:19 -0700 | [diff] [blame] | 770 | } |
Yifan Hong | 1b6f12f | 2021-06-03 20:01:57 -0700 | [diff] [blame] | 771 | |
| 772 | cc_test_host { |
| 773 | name: "binderHostDeviceTest", |
| 774 | defaults: ["binder_test_defaults"], |
| 775 | srcs: ["binderHostDeviceTest.cpp"], |
| 776 | test_config: "binderHostDeviceTest.xml", |
| 777 | shared_libs: [ |
| 778 | "libbase", |
| 779 | "libbinder", |
| 780 | "liblog", |
| 781 | "libutils", |
| 782 | ], |
| 783 | static_libs: [ |
| 784 | "libgmock", |
| 785 | ], |
| 786 | target_required: [ |
| 787 | "binderHostDeviceTestService", |
| 788 | ], |
| 789 | test_suites: ["general-tests"], |
| 790 | target: { |
| 791 | darwin: { |
| 792 | enabled: false, |
| 793 | }, |
| 794 | }, |
| 795 | test_options: { |
| 796 | unit_test: false, |
| 797 | }, |
| 798 | } |
| 799 | |
| 800 | cc_test { |
| 801 | name: "binderHostDeviceTestService", |
| 802 | // The binary is named differently from the module so that PushFilePreparer pushes the binary |
| 803 | // directly, not the test module directory. |
| 804 | stem: "binderHostDeviceTest-service", |
| 805 | defaults: ["binder_test_defaults"], |
| 806 | gtest: false, |
| 807 | auto_gen_config: false, |
| 808 | srcs: ["binderHostDeviceTestService.cpp"], |
| 809 | shared_libs: [ |
| 810 | "libbase", |
| 811 | "libbinder", |
| 812 | "liblog", |
| 813 | "libutils", |
| 814 | ], |
| 815 | test_suites: ["general-tests"], |
| 816 | } |
Pawan | f00fabb | 2022-08-04 17:56:18 +0000 | [diff] [blame] | 817 | |
| 818 | cc_defaults { |
| 819 | name: "service_fuzzer_defaults", |
| 820 | static_libs: [ |
| 821 | "libbase", |
| 822 | "libbinder_random_parcel", |
| 823 | "libcutils", |
| 824 | ], |
| 825 | target: { |
| 826 | android: { |
| 827 | shared_libs: [ |
| 828 | "libbinder_ndk", |
| 829 | "libbinder", |
| 830 | "libutils", |
| 831 | ], |
| 832 | }, |
| 833 | host: { |
| 834 | static_libs: [ |
| 835 | "libbinder_ndk", |
| 836 | "libbinder", |
| 837 | "libutils", |
| 838 | ], |
| 839 | }, |
| 840 | darwin: { |
| 841 | enabled: false, |
| 842 | }, |
| 843 | }, |
| 844 | fuzz_config: { |
| 845 | cc: [ |
| 846 | "smoreland@google.com", |
| 847 | "waghpawan@google.com", |
| 848 | ], |
Pawan Wagh | 595377b | 2022-11-16 08:42:20 +0000 | [diff] [blame] | 849 | // Adds bugs to hotlist "AIDL fuzzers bugs" on buganizer |
| 850 | hotlists: ["4637097"], |
Pawan Wagh | 813a06f | 2023-12-21 23:39:39 +0000 | [diff] [blame] | 851 | use_for_presubmit: true, |
Pawan | f00fabb | 2022-08-04 17:56:18 +0000 | [diff] [blame] | 852 | }, |
| 853 | } |
Pawan Wagh | 475f66c | 2023-05-05 21:46:07 +0000 | [diff] [blame] | 854 | |
| 855 | cc_defaults { |
| 856 | name: "fuzzer_disable_leaks", |
Pawan Wagh | 9e2d296 | 2023-06-20 23:43:24 +0000 | [diff] [blame] | 857 | fuzz_config: { |
| 858 | asan_options: [ |
| 859 | "detect_leaks=0", |
| 860 | ], |
| 861 | hwasan_options: [ |
| 862 | "detect_leaks=0", |
| 863 | ], |
| 864 | }, |
Pawan Wagh | 475f66c | 2023-05-05 21:46:07 +0000 | [diff] [blame] | 865 | } |