aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2022-11-20 17:54:13 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2022-11-20 17:54:13 +0100
commitef04eaad307df4e6b0a6b4d713401df81ba5afc6 (patch)
treecb95c8e2b63401f439aa1f0c9d01e0bc6139b541 /tests
parent4db7d1d863cd41d200b8943980302f43967d25bf (diff)
downloadsciteco-ef04eaad307df4e6b0a6b4d713401df81ba5afc6.tar.gz
test suite: temporarily disabled the "Pattern matching overflow" test case
* This test case no longer fails on MacOS and MinGW builds probably because the settings of the underlying libpcre library changed. * Since these settings are not predictable, cannot be queried and may even change on some flavors of Linux, it has been completely disabled for the time being. * Should fix CI and nightly builds on MacOS and Win32
Diffstat (limited to 'tests')
-rw-r--r--tests/testsuite.at16
1 files changed, 9 insertions, 7 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at
index c476ec8..2e48973 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -99,13 +99,15 @@ AT_CLEANUP
AT_BANNER([Known Bugs])
-AT_SETUP([Pattern matching overflow])
-# Should no longer dump core.
-# It could fail because the memory limit is exceeed,
-# but not in this case since the match string isn't too large.
-AT_CHECK([$SCITECO -e '100000<@I"X">J @S"^EM^X"'], 0, ignore, ignore)
-AT_XFAIL_IF(true)
-AT_CLEANUP
+# NOTE: This bug depends on specific build options of Glib's
+# PCRE which is not predictable.
+#AT_SETUP([Pattern matching overflow])
+## Should no longer dump core.
+## It could fail because the memory limit is exceeed,
+## but not in this case since the match string isn't too large.
+#AT_CHECK([$SCITECO -e '100000<@I"X">J @S"^EM^X"'], 0, ignore, ignore)
+#AT_XFAIL_IF(true)
+#AT_CLEANUP
AT_SETUP([Recursion overflow])
# On Mac OS we cannot always reliably provoke a stack overflow.