forked from OSchip/llvm-project
[libc++] Fix XFAILs when exceptions are disabled
It turns out that I un-XFAILed too many tests in r353210: some tests actually fail whether exceptions are enabled or not because they use types that are marked as unavailable even when exceptions are disabled. llvm-svn: 353215
This commit is contained in:
parent
c2dc4d4aef
commit
a53eb79be6
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_optional_access && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_optional_access
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
// XFAIL: dylib-has-no-bad_optional_access && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_optional_access
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_variant_access && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_variant_access
|
||||
|
||||
|
||||
// <variant>
|
||||
|
|
Loading…
Reference in New Issue