Skip to content

Commit

Permalink
Disable test with a gcc-14 regression
Browse files Browse the repository at this point in the history
  • Loading branch information
miscco committed Jan 9, 2025
1 parent 68b6af0 commit 3441c6f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,9 @@ int main(int, char**)
test_arrays();
#if TEST_STD_VER > 2017
# if !defined(TEST_COMPILER_NVRTC)
# if (defined(TEST_COMPILER_CLANG) && __clang_major__ > 10) || (defined(TEST_COMPILER_GCC) && __GNUC__ > 9) \
|| defined(TEST_COMPILER_MSVC_2022) || defined(TEST_COMPILER_NVHPC)
# if (defined(TEST_COMPILER_CLANG) && __clang_major__ > 10) \
|| (defined(TEST_COMPILER_GCC) && (__GNUC__ > 9 && __GNUC__ < 14)) || defined(TEST_COMPILER_MSVC_2022) \
|| defined(TEST_COMPILER_NVHPC)
static_assert(test());
// TODO: Until cuda::std::__construct_at has support for arrays, it's impossible to test this
// in a constexpr context (see https://reviews.llvm.org/D114903).
Expand Down

0 comments on commit 3441c6f

Please sign in to comment.