aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2017-04-30 12:40:30 -0700
committerDan Albert <danalbert@google.com>2017-04-30 20:45:41 -0700
commit2e6634b5b12d2a76591e44f694331549ca93f78e (patch)
tree7b22cc5daca2b1980139731d44e9b4356b464d91
parent8240b6af0da2126ab613b3b498c845bf6a0652fc (diff)
downloadndk-2e6634b5b12d2a76591e44f694331549ca93f78e.tar.gz
Remove test broken annotation for clang openmp.
This is fixed with the new clang for all non-MIPS architectures. Test: ./validate.py --filter test-openmp Bug: https://github.com/android-ndk/ndk/issues/9 Change-Id: If0653c05c11e3d19032f015678bfd48b13bfd062
-rw-r--r--CHANGELOG.md4
-rw-r--r--tests/device/test-openmp/test_config.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f7d4790b4..7e79d9f3e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -37,6 +37,8 @@ Clang
* Clang has been updated to build 3960126. This is built from Clang 5.0 SVN at
r300080.
+ * Clang now supports OpenMP (except on MIPS/MIPS64):
+ https://github.com/android-ndk/ndk/issues/9.
libc++
======
@@ -49,7 +51,5 @@ Known Issues
* This is not intended to be a comprehensive list of all outstanding bugs.
* Gradle does not yet support unified headers.
- * Clang does not yet support OpenMP:
- https://github.com/android-ndk/ndk/issues/9.
* gabi++ (and therefore stlport) binaries can segfault when built for armeabi:
https://github.com/android-ndk/ndk/issues/374.
diff --git a/tests/device/test-openmp/test_config.py b/tests/device/test-openmp/test_config.py
index 82ab3b419..c37418295 100644
--- a/tests/device/test-openmp/test_config.py
+++ b/tests/device/test-openmp/test_config.py
@@ -1,4 +1,4 @@
def build_broken(abi, platform, toolchain):
- if toolchain == 'clang':
+ if toolchain == 'clang' and abi.startswith('mips'):
return toolchain, 'http://b/25937032'
return None, None