Skip to content

Commit 0065d75

Browse files
committed
[runtimes][NFC] Remove old Lit annotations for gcc-12 and clang-14
We don't support these compilers anymore so these Lit annotations were never used.
1 parent cde307e commit 0065d75

File tree

8 files changed

+8
-11
lines changed

8 files changed

+8
-11
lines changed

libcxx/test/libcxx/gdb/gdb_pretty_printer_test.sh.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// TODO: Investigate these failures which break the CI.
1515
// UNSUPPORTED: clang-15, clang-16, clang-17, clang-18
1616

17-
// TODO: Investigate this failure on GCC 12 (in Ubuntu Jammy)
18-
// UNSUPPORTED: gcc-12, gcc-13
17+
// TODO: Investigate this failure on GCC 13 (in Ubuntu Jammy)
18+
// UNSUPPORTED: gcc-13
1919

2020
// RUN: %{cxx} %{flags} %s -o %t.exe %{compile_flags} -g %{link_flags}
2121
// Ensure locale-independence for unicode tests.

libcxx/test/std/algorithms/robust_against_adl.compile.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// https://buildkite.com/llvm-project/libcxx-ci/builds/15823#0184fc0b-d56b-4774-9e1d-35fe24e09e37
1212
// It seems like the CI gcc version is buggy. I can't reproduce the failure on my system or on
1313
// godbolt (https://godbolt.org/z/rsPv8e8fn).
14-
// UNSUPPORTED: gcc-12, gcc-13
14+
// UNSUPPORTED: gcc-13
1515

1616
#include <algorithm>
1717
#include <cstddef>

libcxx/test/std/thread/futures/futures.task/futures.task.members/ctad.static.compile.pass.cpp

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

99
// UNSUPPORTED: no-threads
1010
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
11-
// XFAIL: clang-14, clang-15, gcc-12, apple-clang-14
11+
// XFAIL: clang-15, apple-clang-14
1212

1313
// checks that CTAD for std::packaged_task works properly with static operator() overloads
1414

libcxx/test/std/utilities/expected/expected.expected/assign/assign.U.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
99

1010
// Older Clangs do not support the C++20 feature to constrain destructors
11-
// XFAIL: clang-14, apple-clang-14
11+
// XFAIL: apple-clang-14
1212

1313
// template<class U = T>
1414
// constexpr expected& operator=(U&& v);

libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/formatter.char_array.pass.cpp

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

88
// UNSUPPORTED: c++03, c++11, c++14, c++17
99
// TODO FMT __builtin_memcpy isn't constexpr in GCC
10-
// UNSUPPORTED: gcc-12, gcc-13
10+
// UNSUPPORTED: gcc-13
1111

1212
// <format>
1313

libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ctad.static.compile.pass.cpp

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

99
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
10-
// XFAIL: clang-15, gcc-12, apple-clang-14
10+
// XFAIL: clang-15, apple-clang-14
1111

1212
// checks that CTAD for std::function works properly with static operator() overloads
1313

libcxx/test/std/utilities/utility/pairs/pairs.pair/assign.pair_like_rv_const.pass.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
1010

11-
// GCC 12 chokes on using a mutable variable inside a constexpr context
12-
// XFAIL: gcc-12
13-
1411
// <utility>
1512

1613
// template <class T1, class T2> struct pair

libcxxabi/test/catch_member_function_pointer_02.pass.cpp

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

1616
// GCC supports noexcept function types but this test still fails.
1717
// This is likely a bug in their implementation. Investigation needed.
18-
// XFAIL: gcc-11, gcc-12, gcc-13
18+
// XFAIL: gcc-13
1919

2020
#include <cassert>
2121

0 commit comments

Comments
 (0)