[libcxx-commits] [PATCH] D159446: [libc++abi][test][VE] Add UNSUPPORTED to pass tests on VE
Kazushi Marukawa via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Sep 5 16:16:29 PDT 2023
kaz7 updated this revision to Diff 555951.
kaz7 marked an inline comment as done.
kaz7 added a comment.
Update comments.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D159446/new/
https://reviews.llvm.org/D159446
Files:
libcxxabi/test/backtrace_test.pass.cpp
libcxxabi/test/forced_unwind1.pass.cpp
libcxxabi/test/forced_unwind2.pass.cpp
libcxxabi/test/forced_unwind3.pass.cpp
Index: libcxxabi/test/forced_unwind3.pass.cpp
===================================================================
--- libcxxabi/test/forced_unwind3.pass.cpp
+++ libcxxabi/test/forced_unwind3.pass.cpp
@@ -13,6 +13,9 @@
// UNSUPPORTED: no-threads
// UNSUPPORTED: no-exceptions
+// VE only supports SjLj and doesn't provide _Unwind_ForcedUnwind.
+// UNSUPPORTED: target={{ve-.*}}
+
#include <assert.h>
#include <exception>
#include <stdlib.h>
Index: libcxxabi/test/forced_unwind2.pass.cpp
===================================================================
--- libcxxabi/test/forced_unwind2.pass.cpp
+++ libcxxabi/test/forced_unwind2.pass.cpp
@@ -10,6 +10,9 @@
// UNSUPPORTED: no-exceptions, c++03
+// VE only supports SjLj and doesn't provide _Unwind_ForcedUnwind.
+// UNSUPPORTED: target={{ve-.*}}
+
// These tests fail on previously released dylibs, investigation needed.
// XFAIL: stdlib=apple-libc++ && target={{.+}}-apple-macosx10.{{9|10|11|12|13|14|15}}
// XFAIL: stdlib=apple-libc++ && target={{.+}}-apple-macosx{{11.0|12.0}}
Index: libcxxabi/test/forced_unwind1.pass.cpp
===================================================================
--- libcxxabi/test/forced_unwind1.pass.cpp
+++ libcxxabi/test/forced_unwind1.pass.cpp
@@ -11,6 +11,9 @@
// UNSUPPORTED: no-exceptions, c++03
+// VE only supports SjLj and doesn't provide _Unwind_ForcedUnwind.
+// UNSUPPORTED: target={{ve-.*}}
+
// These tests fail on previously released dylibs, investigation needed.
// XFAIL: stdlib=apple-libc++ && target={{.+}}-apple-macosx10.{{9|10|11|12|13|14|15}}
// XFAIL: stdlib=apple-libc++ && target={{.+}}-apple-macosx{{11.0|12.0}}
Index: libcxxabi/test/backtrace_test.pass.cpp
===================================================================
--- libcxxabi/test/backtrace_test.pass.cpp
+++ libcxxabi/test/backtrace_test.pass.cpp
@@ -8,6 +8,9 @@
// UNSUPPORTED: no-exceptions
+// VE only supports SjLj and doesn't provide _Unwind_Backtrace.
+// UNSUPPORTED: target={{ve-.*}}
+
#include <assert.h>
#include <stddef.h>
#include <unwind.h>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D159446.555951.patch
Type: text/x-patch
Size: 2060 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230905/c7e5591f/attachment.bin>
More information about the libcxx-commits
mailing list