diff options
author | 2021-06-10 21:16:52 +0000 | |
---|---|---|
committer | 2021-06-14 16:21:38 +0000 | |
commit | 70e430408cf18089690fc15f969be48d2df89f1a (patch) | |
tree | ef49a39b4cd420b11bcf8c3806722e539e9f6a9d /build.py | |
parent | f2a9e73560805f473088f4ade17ca89e75ae736a (diff) |
Disable building C++ tests for Linux
Due to the use of multiple build systems, link dependencies between C++
and Rust where C++ does the final linking will fail. Until we have full
Bazel build, we can't enable these tests again.
Bug: 190750167
Tag: #floss
Test: Build for Linux
Change-Id: Iadd7dafe9635f606c2289eb246e3e2eb4931e92c
Diffstat (limited to 'build.py')
-rwxr-xr-x | build.py | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -66,14 +66,15 @@ VALID_TARGETS = [ 'all', # All targets except test and clean ] +# TODO(b/190750167) - Host tests are disabled until we are full bazel build HOST_TESTS = [ - 'bluetooth_test_common', - 'bluetoothtbd_test', - 'net_test_avrcp', - 'net_test_btcore', - 'net_test_types', - 'net_test_btm_iso', - 'net_test_btpackets', + # 'bluetooth_test_common', + # 'bluetoothtbd_test', + # 'net_test_avrcp', + # 'net_test_btcore', + # 'net_test_types', + # 'net_test_btm_iso', + # 'net_test_btpackets', ] |