[libcxx-commits] [libcxxabi] [libc++abi] Fix test on Android (PR #74753)
Ryan Prichard via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Dec 12 13:45:41 PST 2023
================
@@ -2,7 +2,7 @@
# RUN: %t.exe
# REQUIRES: linux && target={{x86_64-.+}}
-# UNSUPPORTED: no-exceptions
+# UNSUPPORTED: no-exceptions || android
----------------
rprichard wrote:
I think I would change the suffix to use `{{.*}}` to also match a triple without the version number suffix, just for completeness:
```
// UNSUPPORTED: target={{.+}}-android{{.*}}
```
The two unversioned Android annotations I currently see in libc++ also use a `{{.*}}` suffix:
```
// XFAIL: LIBCXX-ANDROID-FIXME && target={{i686|x86_64}}-{{.+}}-android{{.*}}
```
```
// UNSUPPORTED: target=i686-{{.+}}-android{{.*}}
```
https://github.com/llvm/llvm-project/pull/74753
More information about the libcxx-commits
mailing list