Skip to content

Commit db13f83

Browse files
committed
[libcxx][tests] Fix incomplte.verify tests by disabling them on clang-10.
For some reason clang-10 can't match the expected errors produced by passing icomplete arrays to range access functions. Disabling the tests is a stop-gap solution to fix the bots.
1 parent ce6e4f2 commit db13f83

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

libcxx/test/std/ranges/range.access/range.access.begin/incomplete.compile.verify.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: libcpp-no-concepts
1111
// UNSUPPORTED: gcc-10
12+
// UNSUPPORTED: clang-10
1213

1314
// unspecified begin;
1415

libcxx/test/std/ranges/range.access/range.access.cbegin/incomplete.compile.verify.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: libcpp-no-concepts
1111
// UNSUPPORTED: gcc-10
12+
// UNSUPPORTED: clang-10
1213

1314
// ranges::cbegin;
1415

libcxx/test/std/ranges/range.access/range.access.cend/incomplete.compile.verify.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: libcpp-no-concepts
1111
// UNSUPPORTED: gcc-10
12+
// UNSUPPORTED: clang-10
1213

1314
// unspecified begin;
1415

libcxx/test/std/ranges/range.access/range.access.end/incomplete.compile.verify.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: libcpp-no-concepts
1111
// UNSUPPORTED: gcc-10
12+
// UNSUPPORTED: clang-10
1213

1314
// unspecified begin;
1415

libcxx/test/std/ranges/range.access/range.prim/empty.incomplete.verify.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: libcpp-no-concepts
11+
// UNSUPPORTED: clang-10
1112
// UNSUPPORTED: gcc-10
1213

1314
// std::ranges::empty

0 commit comments

Comments
 (0)