aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2016-02-04 11:16:29 -0800
committerDan Albert <danalbert@google.com>2016-02-04 11:16:29 -0800
commit6f0d65a6c6b820a8008706a45b6a9a22344924d5 (patch)
tree3f9d6779c276a2014ab544bc5a9e246939663038
parent117dcbaaa9c4fe7b3a79b3887022d22e8f9df818 (diff)
downloadndk-6f0d65a6c6b820a8008706a45b6a9a22344924d5.tar.gz
Refine googletest test config.
Seems this only fails on the Intel ABIs? According to the bug history, I first marked this as failing when tested on an AOSP device and some armeabi-v7a emulators. Perhaps it's just an issue with emulated devices? Bug: http://b/24380035 Change-Id: I07e5231e28da30a592c4d3c11beffd543b112849
-rw-r--r--tests/device/test-googletest-full/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/device/test-googletest-full/test_config.py b/tests/device/test-googletest-full/test_config.py
index a7d94c503..0358780fc 100644
--- a/tests/device/test-googletest-full/test_config.py
+++ b/tests/device/test-googletest-full/test_config.py
@@ -1,4 +1,4 @@
def match_broken(abi, platform, device_platform, toolchain, subtest=None):
- if abi != 'arm64-v8a':
+ if abi in ('x86', 'x86_64'):
return abi, 'http://b/24380035'
return None, None