File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ static bool HasCudaRuntime() {
4343
4444#if CLANG_VERSION_MAJOR < 16
4545TEST (DISABLED_CUDATest, Sanity) {
46+ #elif CLANG_VERSION_MAJOR == 20
47+ // FIXME: CUDA Tests Broken for llvm 20 release/
48+ TEST (DISABLED_CUDATest, Sanity) {
4649#else
4750TEST (CUDATest, Sanity) {
4851#endif // CLANG_VERSION_MAJOR < 16
@@ -54,7 +57,12 @@ TEST(CUDATest, Sanity) {
5457 EXPECT_TRUE (Cpp::CreateInterpreter ({}, {" --cuda" }));
5558}
5659
60+ #if CLANG_VERSION_MAJOR == 20
61+ // FIXME: CUDA Tests Broken for llvm 20 release/
62+ TEST (DISABLED_CUDATest, CUDAH) {
63+ #else
5764TEST (CUDATest, CUDAH) {
65+ #endif
5866#ifdef _WIN32
5967 GTEST_SKIP () << " Disabled on Windows. Needs fixing." ;
6068#endif
@@ -66,7 +74,12 @@ TEST(CUDATest, CUDAH) {
6674 EXPECT_TRUE (success);
6775}
6876
77+ #if CLANG_VERSION_MAJOR == 20
78+ // FIXME: CUDA Tests Broken for llvm 20 release/
79+ TEST (DISABLED_CUDATest, CUDARuntime) {
80+ #else
6981TEST (CUDATest, CUDARuntime) {
82+ #endif
7083#ifdef _WIN32
7184 GTEST_SKIP () << " Disabled on Windows. Needs fixing." ;
7285#endif
You can’t perform that action at this time.
0 commit comments