aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/atlocal.in
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2024-09-16 01:52:18 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2024-09-16 01:52:18 +0200
commitded9a02e5c1b2ad1a1224e7dcfb3b1550e712666 (patch)
tree00b1470eb756f9d16f5607c7228b992de1b6a031 /tests/atlocal.in
parent909a4a6657b0912aee6435bff15ef3d054aa077e (diff)
downloadsciteco-ded9a02e5c1b2ad1a1224e7dcfb3b1550e712666.tar.gz
test suite: enable the recursion overflow test case everywhere
* It wasn't failing on FreeBSD because there are different default stacksize limits. We now set it to 8MB everywhere.
Diffstat (limited to 'tests/atlocal.in')
-rw-r--r--tests/atlocal.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/atlocal.in b/tests/atlocal.in
index c5cb4b9..061937a 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -24,3 +24,8 @@ case $host in
LC_ALL=C.UTF-8
;;
esac
+
+# Default stack size on Linux (8M).
+# Some platforms allow very large stack sizes, making it hard to test
+# against potential stack overflows.
+ulimit -s 8192