summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2015-02-07 15:53:08 +0100
committerStefan Behnel <stefan_ml@behnel.de>2015-02-07 15:53:08 +0100
commitfd839c47fd0d0ea578ef110d04f7e44224404348 (patch)
tree853d945971755d9ed491917bae57a91f8254c090
parent2b3354206af4ba0b12952358c04160dc05f8905a (diff)
downloadcython-fd839c47fd0d0ea578ef110d04f7e44224404348.tar.gz
add disabled test that fails
-rw-r--r--tests/run/carray_coercion.pyx11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/run/carray_coercion.pyx b/tests/run/carray_coercion.pyx
index a3b97b757..d73fcf497 100644
--- a/tests/run/carray_coercion.pyx
+++ b/tests/run/carray_coercion.pyx
@@ -85,6 +85,17 @@ def assign_int_array_array_from_tuples():
return v
+''' FIXME: this currently crashes:
+def assign_int_array_array_from_tuples():
+ """
+ >>> assign_int_array_array_from_tuples()
+ [[11, 12, 13], [21, 22, 23]]
+ """
+ cdef int[2][3] v = ((11, 12, 13), (21, 22, 23))
+ return v
+'''
+
+
def build_from_list_of_arrays():
"""
>>> build_from_list_of_arrays()