Skip to content

Commit b7e43df

Browse files
committedOct 24, 2018
Adjust unsupported C++ versions in some tests
Summary: Some tests (mainly the new C++20 calendar library) fail when libc++ is tested with '--param=std=c++98'. The failures happen because the tests actually don't support C++98, but don't mention C++98 in the 'UNSUPPORTED:' line. This change fixes the issue. Reviewers: mclow.lists, ldionne Reviewed By: ldionne Subscribers: arphaman, michaelplatings, libcxx-commits Differential Revision: https://reviews.llvm.org/D53640 llvm-svn: 345148
1 parent 7be45b0 commit b7e43df

File tree

176 files changed

+176
-176
lines changed

Some content is hidden

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

176 files changed

+176
-176
lines changed
 

‎libcxx/test/std/re/re.grammar/excessive_brace_count.pass.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
// <regex>
1111
// UNSUPPORTED: libcpp-no-exceptions
12-
// UNSUPPORTED: c++03
12+
// UNSUPPORTED: c++98, c++03
1313

1414
// the "n" in `a{n}` should be within the numeric limits.
1515

‎libcxx/test/std/re/re.results/re.results.const/move.pass.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Source Licenses. See LICENSE.TXT for details.
77
//
88
//===----------------------------------------------------------------------===//
9-
// UNSUPPORTED: c++03
9+
// UNSUPPORTED: c++98, c++03
1010
// <regex>
1111

1212
// class match_results<BidirectionalIterator, Allocator>

0 commit comments

Comments
 (0)