Hi John, On Sat, 8 Sep 2012 15:22:35 -0400 John Cowan <[email protected]> wrote:
> I get 23 instances of "[panic] nursery is too small - try higher setting > using the `-:s' option - execution terminated" in the Cygwin stderr log, > which I have attached. I commented out the "set -e" in runtests.sh so > the whole test suite would run to completion. There are no such panics > in the Linux stderr log. > > I haven't tested exhaustively, but the first two panics result from > interpreter runs on apply-test.scm and library-test.scm. If I add -:s2M > here and rerun csi with the same arguments, it runs much longer and then > I get the same error. Does make check work for you if you apply the attached patch? I can't run the full make check to completion because I'm running out of disk space, but some tests that were failing don't fail with that change. I can't explain why it works, though. Best wishes. Mario -- http://parenteses.org/mario
diff --git a/tests/runtests.sh b/tests/runtests.sh index 5b6113e..cae1f11 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -51,6 +51,7 @@ fi # for cygwin test -f ../cygchicken-0.dll && cp ../cygchicken-0.dll . +mv ../cygchicken-0.dll ../cygchicken-0.dll_ compile="../csc -compiler $CHICKEN -v -I.. -L.. -include-path .. -o a.out" compile2="../csc -compiler $CHICKEN -v -I.. -L.. -include-path .."
_______________________________________________ Chicken-hackers mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/chicken-hackers
