From be5100a4acf5c80636fcf7381de3e7b6787dac64 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 7 Sep 2026 12:21:24 +0200 Subject: [PATCH] EXP: [Python][GPU] Remove crashy CUDA test --- python/pyarrow/tests/test_cuda.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/python/pyarrow/tests/test_cuda.py b/python/pyarrow/tests/test_cuda.py index b995c2dd5f7b..e65784887ce7 100644 --- a/python/pyarrow/tests/test_cuda.py +++ b/python/pyarrow/tests/test_cuda.py @@ -297,14 +297,6 @@ def test_foreign_buffer(): del hbuf fbuf.copy_to_host() - # test deallocating the host buffer memory making it inaccessible - hbuf = cuda.new_host_buffer(size * dtype.itemsize) - fbuf = ctx.foreign_buffer(hbuf.address, hbuf.size) - del hbuf - with pytest.raises(pa.ArrowIOError, - match=('Cuda error ')): - fbuf.copy_to_host() - @pytest.mark.parametrize("size", [0, 1, 1000]) def test_CudaBuffer(size):