Revision: 1052
http://www.exim.org/viewvc/pcre2?view=rev&revision=1052
Author: ph10
Date: 2018-12-07 16:32:05 +0000 (Fri, 07 Dec 2018)
Log Message:
-----------
Make RunTest check stack settablility using the -bigstack value.
Modified Paths:
--------------
code/trunk/ChangeLog
code/trunk/RunTest
Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog 2018-12-06 17:13:41 UTC (rev 1051)
+++ code/trunk/ChangeLog 2018-12-07 16:32:05 UTC (rev 1052)
@@ -97,7 +97,10 @@
descriptors instead of redirecting stderr to stdout. This worked on Linux, but
it was reported not to on other systems, causing the tests to fail.
+25. In the RunTest script, make the test for stack setting use the same value
+for the stack as it needs for -bigstack.
+
Version 10.32 10-September-2018
-------------------------------
Modified: code/trunk/RunTest
===================================================================
--- code/trunk/RunTest 2018-12-06 17:13:41 UTC (rev 1051)
+++ code/trunk/RunTest 2018-12-07 16:32:05 UTC (rev 1052)
@@ -319,7 +319,7 @@
# If it is possible to set the system stack size and -bigstack was given,
# set up a large stack.
-$sim ./pcre2test -S 1 /dev/null /dev/null
+$sim ./pcre2test -S 64 /dev/null /dev/null
if [ $? -eq 0 -a "$bigstack" != "" ] ; then
setstack="-S 64"
else