forked from OSchip/llvm-project
[libc++/abi/unwind] Rename Lit features for no exceptions to 'no-exceptions'
Instead of having different names for the same Lit feature accross code bases, use the same name everywhere. This NFC commit is in preparation for a refactor where all three projects will be using the same Lit feature detection logic, and hence it won't be convenient to use different names for the feature. Differential Revision: https://reviews.llvm.org/D78370
This commit is contained in:
parent
72f565899d
commit
8c61114c53
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
// <algorithm>
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// Make sure we abort() when exceptions are disabled and we fetch a key that
|
||||
// is not in the map.
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
|
||||
#include <csignal>
|
||||
#include <cstdlib>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// Make sure we abort() when exceptions are disabled and we fetch a key that
|
||||
// is not in the map.
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
|
||||
#include <csignal>
|
||||
#include <cstdlib>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// Test asan vector annotations with a class that throws in a CTOR.
|
||||
|
||||
#include <vector>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// Make sure we abort() when exceptions are disabled and we fetch a key that
|
||||
// is not in the map.
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
#include <csignal>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// Make sure we abort() when exceptions are disabled and we fetch a key that
|
||||
// is not in the map.
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
#include <csignal>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// Make sure that we abort() when exceptions are disabled and the exception
|
||||
// flag is set for the iostate we pass to clear().
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
|
||||
#include <csignal>
|
||||
#include <cstdlib>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
// explicit locale( const char* std_name );
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
|
||||
// Make sure we abort() when we construct a locale with a null name and
|
||||
// exceptions are disabled.
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
// locale(const locale& other, const char* std_name, category cat);
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
|
||||
// Make sure we abort() when we construct a locale with a null name and
|
||||
// exceptions are disabled.
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
// template <class Facet> const Facet& use_facet(const locale& loc);
|
||||
|
||||
// REQUIRES: libcpp-no-exceptions
|
||||
// REQUIRES: no-exceptions
|
||||
|
||||
// Make sure we abort() when we pass a facet not associated to the locale to
|
||||
// use_facet() and exceptions are disabled.
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef TEST_HAS_NO_EXCEPTIONS
|
||||
static const bool expected = false;
|
||||
#else
|
||||
// Under libcpp-no-exceptions all noexcept expressions are trivially true, so
|
||||
// Under -fno-exceptions all noexcept expressions are trivially true, so
|
||||
// any check for a noexcept returning false must actually check for it being
|
||||
// true.
|
||||
static const bool expected = true;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <deque>
|
||||
|
||||
// void push_back(const value_type& x);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <deque>
|
||||
|
||||
// void push_front(const value_type& x);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <forward_list>
|
||||
|
||||
// void push_front(const value_type& x);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <list>
|
||||
|
||||
// void push_back(const value_type& x);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <list>
|
||||
|
||||
// void push_front(const value_type& x);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
// This test fails due to a stack overflow
|
||||
// XFAIL: LIBCXX-WINDOWS-FIXME
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <exception>
|
||||
|
||||
// class nested_exception;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <exception>
|
||||
|
||||
// class nested_exception;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
// which copy the exception each time the exception_ptr is copied.
|
||||
// XFAIL: LIBCXX-WINDOWS-FIXME
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <exception>
|
||||
|
||||
// exception_ptr current_exception();
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <exception>
|
||||
|
||||
// template<class E> exception_ptr make_exception_ptr(E e);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <exception>
|
||||
|
||||
// void rethrow_exception [[noreturn]] (exception_ptr p);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// test uncaught_exception
|
||||
|
||||
#include <exception>
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// XFAIL: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
// std::uncaught_exceptions() was introduced in the dylib on Mac OS 10.12
|
||||
// XFAIL: with_system_cxx_lib=macosx10.11
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
// template <class BidirectionalIterator, class Allocator, class charT, class traits>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
// template <class OutputIterator, class BidirectionalIterator,
|
||||
// class traits, class charT, class ST, class SA>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
// template <class BidirectionalIterator, class Allocator, class charT, class traits>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
// the "n" in `a{n}` should be within the numeric limits.
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
// the "n" and "m" in `a{n,m}` should be within the numeric limits.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <regex>
|
||||
|
||||
// template <class charT, class traits = regex_traits<charT>> class basic_regex;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <regex>
|
||||
|
||||
// template <class charT, class traits = regex_traits<charT>> class basic_regex;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <regex>
|
||||
|
||||
// template <class charT, class traits = regex_traits<charT>> class basic_regex;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <regex>
|
||||
|
||||
// template <class charT, class traits = regex_traits<charT>> class basic_regex;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <regex>
|
||||
|
||||
// template <class charT, class traits = regex_traits<charT>> class basic_regex;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <string>
|
||||
|
||||
// size_type max_size() const;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// XFAIL: with_system_cxx_lib=macosx10.11
|
||||
// XFAIL: with_system_cxx_lib=macosx10.10
|
||||
// XFAIL: with_system_cxx_lib=macosx10.9
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: libcpp-has-no-threads
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: libcpp-has-no-threads
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
// UNSUPPORTED: libcpp-has-no-threads, libcpp-no-exceptions
|
||||
// UNSUPPORTED: libcpp-has-no-threads, no-exceptions
|
||||
|
||||
// <future>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: libcpp-has-no-threads
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: libcpp-has-no-threads
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: libcpp-has-no-threads
|
||||
// UNSUPPORTED: c++98, c++03
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: libcpp-has-no-threads
|
||||
|
||||
// <condition_variable>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_any_cast && !no-exceptions
|
||||
|
||||
// <any>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <memory>
|
||||
|
||||
// allocator:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <memory>
|
||||
|
||||
// template<class D, class A> shared_ptr(nullptr_t, D d, A a);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: sanitizer-new-delete
|
||||
|
||||
// <memory>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// <memory>
|
||||
|
||||
// template<class Y, class D, class A> shared_ptr(Y* p, D d, A a);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: sanitizer-new-delete
|
||||
|
||||
// <memory>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
// UNSUPPORTED: sanitizer-new-delete
|
||||
|
||||
// <memory>
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <optional>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
// <optional>
|
||||
|
||||
// XFAIL: dylib-has-no-bad_optional_access && !libcpp-no-exceptions
|
||||
// XFAIL: dylib-has-no-bad_optional_access && !no-exceptions
|
||||
|
||||
// constexpr T& optional<T>::value() &&;
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
|
||||
// <variant>
|
||||
|
|
|
@ -8,7 +8,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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -8,7 +8,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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -8,7 +8,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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
|
||||
|
|
|
@ -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 && !no-exceptions
|
||||
|
||||
// <variant>
|
||||
// template <class Visitor, class... Variants>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcpp-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
// "support/test_macros.hpp"
|
||||
|
||||
|
|
|
@ -650,7 +650,7 @@ class Configuration(object):
|
|||
def configure_compile_flags_exceptions(self):
|
||||
enable_exceptions = self.get_lit_bool('enable_exceptions', True)
|
||||
if not enable_exceptions:
|
||||
self.config.available_features.add('libcpp-no-exceptions')
|
||||
self.config.available_features.add('no-exceptions')
|
||||
self.cxx.compile_flags += ['-fno-exceptions']
|
||||
|
||||
def configure_compile_flags_rtti(self):
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcxxabi-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
#include <assert.h>
|
||||
#include <stddef.h>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
// GCC incorrectly allows array types to be caught by reference.
|
||||
// See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69372
|
||||
// XFAIL: gcc
|
||||
// UNSUPPORTED: libcxxabi-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
#include <cassert>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Can you have a catch clause of array type that catches anything?
|
||||
// UNSUPPORTED: libcxxabi-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
#include <cassert>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcxxabi-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
#include <exception>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: libcxxabi-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
#include <exception>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
check against.
|
||||
*/
|
||||
|
||||
// UNSUPPORTED: libcxxabi-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
#include <exception>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
check against. It also checks that virtual bases work properly
|
||||
*/
|
||||
|
||||
// UNSUPPORTED: libcxxabi-no-exceptions
|
||||
// UNSUPPORTED: no-exceptions
|
||||
|
||||
#include <exception>
|
||||
#include <stdlib.h>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue