From 9c3f1076bc6410dc9bdcdfe2e62a63fdb2c5117a Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Mon, 20 Aug 2018 18:12:19 -0500
Subject: [PATCH] [pybind] xfail test_map_dtype on pypy

---
 test/test_wrapper.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/test/test_wrapper.py b/test/test_wrapper.py
index 94a00d85..34b4207b 100644
--- a/test/test_wrapper.py
+++ b/test/test_wrapper.py
@@ -1016,6 +1016,12 @@ def test_fine_grain_svm(ctx_factory):
     cl.cltypes.uint2,
     ])
 def test_map_dtype(ctx_factory, dtype):
+    from pyopencl import _PYPY
+
+    if _PYPY:
+        # FIXME
+        pytest.xfail("enqueue_map_buffer not yet working on pypy")
+
     ctx = ctx_factory()
     queue = cl.CommandQueue(ctx)
 
-- 
GitLab