aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-12-04 12:27:02 -0800
committerDan Albert <danalbert@google.com>2015-12-04 12:27:41 -0800
commite2253c46f68f86a7386f2641dc80da85db54c45e (patch)
treea0bdaf822512a25ba10dc3b73c307678d549a92e /tests
parentaeefaffc262be71cc21e0e79ccde80fb6629436b (diff)
downloadndk-e2253c46f68f86a7386f2641dc80da85db54c45e.tar.gz
Disable test for armeabi.
The test is making sure that LIBCXX_FORCE_REBUILD works, and I really don't care about supporting that for ARM5 (and it currently doesn't work). Change-Id: I832d9d1d88ff06669c72f03f8ea6907c3aa6c23f
Diffstat (limited to 'tests')
-rw-r--r--tests/device/test-libc++/test_config.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/device/test-libc++/test_config.py b/tests/device/test-libc++/test_config.py
new file mode 100644
index 000000000..24d461c71
--- /dev/null
+++ b/tests/device/test-libc++/test_config.py
@@ -0,0 +1,5 @@
+def match_unsupported(abi, platform, device_platform, toolchain, subtest=None):
+ if abi == 'armeabi':
+ # I have no interest in supporting rebuilding libc++ for ARM5.
+ return abi
+ return None