We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b7be11f + 61be02c commit 00ca1acCopy full SHA for 00ca1ac
1 file changed
testing/unittest_static_assert.cmake
@@ -2,3 +2,9 @@
2
# This test unconditionally throws in some places, the compiler will detect that
3
# control flow will never reach some instructions. This is intentional.
4
target_link_libraries(${test_target} PRIVATE thrust.silence_unreachable_code_warnings)
5
+
6
+# The machinery behind this test is not compatible with NVC++.
7
+# See https://github.com/NVIDIA/thrust/issues/1397
8
+if ("NVCXX" STREQUAL "${CMAKE_CUDA_COMPILER_ID}")
9
+ set_tests_properties(${test_target} PROPERTIES DISABLED True)
10
+endif()
0 commit comments