aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-12-02 15:51:49 -0800
committerDan Albert <danalbert@google.com>2015-12-02 15:51:49 -0800
commit35374307e25696cf8cbbe39e50410b6b2cadbc84 (patch)
treea1c95a95c78d238ee1be12be6763c6fb8c143286
parent65bfb1b2c163fcbeebcc9094e84cd345809df8a9 (diff)
downloadndk-35374307e25696cf8cbbe39e50410b6b2cadbc84.tar.gz
Make the gtest broken check more granular.
For some reason this test works fine for arm64 (not x86_64 though). Bug: http://b/24380035 Change-Id: Ie9131206988b3007484b81c1fa8c37bdc87483f4
-rw-r--r--tests/device/test-googletest-full/test_config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/device/test-googletest-full/test_config.py b/tests/device/test-googletest-full/test_config.py
index 51c54bf3e..4849e30f5 100644
--- a/tests/device/test-googletest-full/test_config.py
+++ b/tests/device/test-googletest-full/test_config.py
@@ -1,2 +1,4 @@
def match_broken(abi, platform, toolchain, subtest=None):
- return toolchain, 'http://b/24380035'
+ if abi != 'arm64-v8a':
+ return abi, 'http://b/24380035'
+ return None, None