diff --git a/cuda_core/tests/memory_ipc/test_peer_access.py b/cuda_core/tests/memory_ipc/test_peer_access.py index 5a06133c9b..917812e30f 100644 --- a/cuda_core/tests/memory_ipc/test_peer_access.py +++ b/cuda_core/tests/memory_ipc/test_peer_access.py @@ -13,6 +13,7 @@ POOL_SIZE = 2097152 +@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved") class TestPeerAccessNotPreservedOnImport: """ Verify that peer access settings are not preserved when a memory resource @@ -51,6 +52,7 @@ def child_main(self, mr): mr.close() +@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved") class TestBufferPeerAccessAfterImport: """ Verify that buffers imported via IPC can be accessed from peer devices after diff --git a/cuda_core/tests/test_memory_peer_access.py b/cuda_core/tests/test_memory_peer_access.py index bcae9576da..5be7522a49 100644 --- a/cuda_core/tests/test_memory_peer_access.py +++ b/cuda_core/tests/test_memory_peer_access.py @@ -10,6 +10,7 @@ NBYTES = 1024 +@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved") def test_peer_access_basic(mempool_device_x2): """Basic tests for dmr.peer_accessible_by.""" dev0, dev1 = mempool_device_x2 @@ -46,6 +47,7 @@ def test_peer_access_basic(mempool_device_x2): zero_on_dev0.copy_from(buf_on_dev1, stream=stream_on_dev0) +@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved") def test_peer_access_property_x2(mempool_device_x2): """The the dmr.peer_accessible_by property (but not its functionality).""" # The peer access list is a sorted tuple and always excludes the self @@ -78,6 +80,7 @@ def check(expected): dmr.peer_accessible_by = [num_devices] # device ID out of bounds +@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved") def test_peer_access_transitions(mempool_device_x3): """Advanced tests for dmr.peer_accessible_by."""