Skip to content

Commit 8c61114

Browse files
committed
[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
1 parent 72f5658 commit 8c61114

File tree

142 files changed

+146
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+146
-143
lines changed

libcxx/test/libcxx/algorithms/debug_less.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: libcpp-no-exceptions
9+
// UNSUPPORTED: no-exceptions
1010

1111
// <algorithm>
1212

libcxx/test/libcxx/containers/associative/map/at.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Make sure we abort() when exceptions are disabled and we fetch a key that
1616
// is not in the map.
1717

18-
// REQUIRES: libcpp-no-exceptions
18+
// REQUIRES: no-exceptions
1919

2020
#include <csignal>
2121
#include <cstdlib>

libcxx/test/libcxx/containers/associative/map/at.const.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Make sure we abort() when exceptions are disabled and we fetch a key that
1616
// is not in the map.
1717

18-
// REQUIRES: libcpp-no-exceptions
18+
// REQUIRES: no-exceptions
1919

2020
#include <csignal>
2121
#include <cstdlib>

libcxx/test/libcxx/containers/sequences/vector/asan_throw.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: libcpp-no-exceptions
9+
// UNSUPPORTED: no-exceptions
1010
// Test asan vector annotations with a class that throws in a CTOR.
1111

1212
#include <vector>

libcxx/test/libcxx/containers/unord/unord.map/at.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Make sure we abort() when exceptions are disabled and we fetch a key that
1616
// is not in the map.
1717

18-
// REQUIRES: libcpp-no-exceptions
18+
// REQUIRES: no-exceptions
1919
// UNSUPPORTED: c++98, c++03
2020

2121
#include <csignal>

libcxx/test/libcxx/containers/unord/unord.map/at.const.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Make sure we abort() when exceptions are disabled and we fetch a key that
1616
// is not in the map.
1717

18-
// REQUIRES: libcpp-no-exceptions
18+
// REQUIRES: no-exceptions
1919
// UNSUPPORTED: c++98, c++03
2020

2121
#include <csignal>

libcxx/test/libcxx/input.output/iostreams.base/ios/iostate.flags/clear.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Make sure that we abort() when exceptions are disabled and the exception
1616
// flag is set for the iostate we pass to clear().
1717

18-
// REQUIRES: libcpp-no-exceptions
18+
// REQUIRES: no-exceptions
1919

2020
#include <csignal>
2121
#include <cstdlib>

libcxx/test/libcxx/localization/locales/locale.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
// explicit locale( const char* std_name );
1414

15-
// REQUIRES: libcpp-no-exceptions
15+
// REQUIRES: no-exceptions
1616

1717
// Make sure we abort() when we construct a locale with a null name and
1818
// exceptions are disabled.

libcxx/test/libcxx/localization/locales/locale.category.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
// locale(const locale& other, const char* std_name, category cat);
1414

15-
// REQUIRES: libcpp-no-exceptions
15+
// REQUIRES: no-exceptions
1616

1717
// Make sure we abort() when we construct a locale with a null name and
1818
// exceptions are disabled.

libcxx/test/libcxx/localization/locales/use_facet.abort.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// template <class Facet> const Facet& use_facet(const locale& loc);
1212

13-
// REQUIRES: libcpp-no-exceptions
13+
// REQUIRES: no-exceptions
1414

1515
// Make sure we abort() when we pass a facet not associated to the locale to
1616
// use_facet() and exceptions are disabled.

0 commit comments

Comments
 (0)