Skip to content

Commit 8a1a9cf

Browse files
committed
Fix UNSUPPORTED to exclude C++03 and fix docs
1 parent 20bcce5 commit 8a1a9cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libcxx/docs/TestingLibcxx.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ Instead use:
451451

452452
.. code-block:: cpp
453453
454-
// UNSUPPORTED: std-at-least-c++26
454+
// REQUIRES: std-at-least-c++26
455455
456456
There is no corresponding ``std-at-most-c++23``. This could be useful when
457457
tests are only valid for a small set of standard versions. For example, a

libcxx/test/std/language.support/support.exception/propagation/exception_ptr_move_assignment.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: no-exceptions, std-at-least-c++11
9+
// UNSUPPORTED: no-exceptions, c++03
1010

1111
// <exception>
1212

libcxx/test/std/language.support/support.exception/propagation/exception_ptr_move_ctr.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: no-exceptions, std-at-least-c++11
9+
// UNSUPPORTED: no-exceptions, c++03
1010

1111
// <exception>
1212

0 commit comments

Comments
 (0)