[libc++abi] Disable _Unwind_ForcedUnwind + exception tests for ARM EHABI
authorFangrui Song <i@maskray.me>
Fri, 5 Feb 2021 22:12:27 +0000 (14:12 -0800)
committerFangrui Song <i@maskray.me>
Fri, 5 Feb 2021 22:12:27 +0000 (14:12 -0800)
libunwind ARM EHABI does not support _Unwind_ForcedUnwind yet.
In addition, ARM EHABI makes `_Unwind_Exception` a typedef so
`struct _Unwind_Exception*` cannot be used.

libcxxabi/test/forced_unwind1.pass.cpp
libcxxabi/test/forced_unwind2.pass.cpp

index 9432f48..b98f572 100644 (file)
@@ -16,6 +16,9 @@
 #include <unwind.h>
 #include <tuple>
 
+#if defined(_LIBCXXABI_ARM_EHABI)
+int main() {}
+#else
 static int bits = 0;
 
 struct C {
@@ -75,3 +78,4 @@ int main() {
   test();
   return bits != 15;
 }
+#endif
index 4eb9f48..ee11b69 100644 (file)
@@ -17,6 +17,9 @@
 #include <unwind.h>
 #include <tuple>
 
+#if defined(_LIBCXXABI_ARM_EHABI)
+int main() {}
+#else
 template <typename T>
 struct Stop;
 
@@ -55,3 +58,4 @@ int main() {
   }
   abort();
 }
+#endif