1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: Tobias Hansen <thansen@debian.org>
Date: Sun, 12 Jun 2022 10:11:53 -0400
Subject: disable_tests
Descriptions: Disable some tests that are failing on certain architectures.
The bugs have been reported upstream, see links in the patch below.
numpy_memoryview on all powerpc architectures, arm64 and alpha,
apparently due to a bug in numpy.
---
tests/bugs.txt | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/tests/bugs.txt b/tests/bugs.txt
index b25f8cd..3a20853 100644
--- a/tests/bugs.txt
+++ b/tests/bugs.txt
@@ -57,3 +57,13 @@ inlined_generator_expressions
# crash in C++ on i686 (possibly others?)
# See https://github.com/cython/cython/issues/5768
gil_in_var_initialization_tests
+
+# Skipped in Debian
+# https://github.com/cython/cython/issues/2308
+numpy_memoryview
+# https://github.com/cython/cython/issues/5926
+test_fstring.TestCase.test_many_expressions
+# https://github.com/cython/cython/issues/5927
+test_unicode.UnicodeTest.test_raiseMemError
+# https://github.com/cython/cython/issues/5928
+cpp_stl_any
|