From d2b5a396902b4b67a1747bb730b723dd6330bdb2 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Sun, 6 Nov 2022 10:09:12 -0600 Subject: [PATCH] Skip test_slice on Intel CL --- test/test_array.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test_array.py b/test/test_array.py index 1da3c251..b4409002 100644 --- a/test/test_array.py +++ b/test/test_array.py @@ -1134,8 +1134,9 @@ def test_slice(ctx_factory): b = b_gpu.get() if queue.device.platform.name == "Intel(R) OpenCL": - # Intel CL appears to miscompile the empty case as of 2022.14.8.0.04 - start_offset = 1 + pytest.skip("Intel CL regularly crashes on this test case " + "-- https://github.com/conda-forge/" + "intel-compiler-repack-feedstock/issues/7") else: start_offset = 0 -- GitLab