We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c3914 commit b091340Copy full SHA for b091340
cuda_core/tests/test_linker.py
@@ -1,6 +1,7 @@
1
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2
#
3
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
4
+import os
5
6
import pytest
7
@@ -140,6 +141,10 @@ def test_linker_link_invalid_target_type(compile_ptx_functions):
140
141
linker.link("invalid_target")
142
143
144
+@pytest.mark.skipif(
145
+ is_culink_backend and os.environ.get("CUDA_PYTHON_SANITIZER_RUNNING", "0") == "1",
146
+ reason="The compute-sanitzer is running, and this test causes an API error using the culink API.",
147
+)
148
def test_linker_get_error_log(compile_ptx_functions):
149
options = LinkerOptions(arch=ARCH)
150
0 commit comments