aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2016-02-04 10:06:33 -0800
committerDan Albert <danalbert@google.com>2016-02-04 10:06:33 -0800
commit44024fbc841cdc3e2c7040a53a05a99e1163f8fa (patch)
tree5e7c8349ee3571a6a5b2610891ec82a6e18bc239
parent1254efe5161bb838b3b4eae2ee176994344ec93b (diff)
downloadndk-44024fbc841cdc3e2c7040a53a05a99e1163f8fa.tar.gz
Fix test config for GOT optimization test.
This test is actually only broken for ARM's 32-bit ABIs. Bug: http://b/26031639 Change-Id: Idd166f1f11012565cc3f7ad723557796108561ac
-rw-r--r--tests/build/b14811006-GOT_PREL-optimization/test_config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/build/b14811006-GOT_PREL-optimization/test_config.py b/tests/build/b14811006-GOT_PREL-optimization/test_config.py
index a2f481bc7..133f960d7 100644
--- a/tests/build/b14811006-GOT_PREL-optimization/test_config.py
+++ b/tests/build/b14811006-GOT_PREL-optimization/test_config.py
@@ -1,4 +1,5 @@
def match_broken(abi, platform, toolchain, subtest=None):
if toolchain == 'clang':
- return toolchain, 'http://b/26031639'
+ if abi.startswith('armeabi'):
+ return ' '.join([toolchain, abi]), 'http://b/26031639'
return None, None