summaryrefslogtreecommitdiff
path: root/test-suite/standalone/test-stack-overflow
AgeCommit message (Collapse)AuthorFilesLines
2017-05-16On Hurd, skip tests that require working setrlimits for memoryManolis Ragkousis1-0/+6
On Hurd, setrlimits are not yet implemented. See <https://lists.gnu.org/archive/html/bug-hurd/2017-05/msg00013.html>. * test-suite/standalone/test-out-of-memory: skip for Hurd. * test-suite/standalone/test-stack-overflow: skip for Hurd.
2017-03-03Cygwin: skip tests that require working setrlimits for memoryMike Gran1-1/+9
On Cygwin, setrlimits cannot be used to set total memory availabe for a process. * test-suite/standalone/test-out-of-memory: skip for cygwin * test-suite/standalone/test-stack-overflow: skip for cygwin
2016-06-24On Darwin, skip tests that depend on setrlimitDaniel Llorens1-0/+7
On Darwin, setrlimit is ignored, and these tests do not terminate. There doesn't seem to be another way to limit the memory allocated by a process. * test-suite/standalone/test-stack-overflow: Skip this test on Darwin. * test-suite/standalone/test-out-of-memory: Skip this test on Darwin.
2014-04-08Compile some standalone tests to bytecodeAndy Wingo1-0/+1
* test-suite/standalone/test-out-of-memory: * test-suite/standalone/test-stack-overflow: Compile these files before running them. That way, recursion can check the stack-overflow mechanism instead of the memory allocation mechanism. We compile beforehand as a prepass so as not to impose an rlimit on a Guile that previously ran auto-compilation.
2014-03-15Add stack overflow testAndy Wingo1-0/+38
* libguile/throw.c (throw_without_pre_unwind): Newline after the unwind-only warning. * test-suite/standalone/Makefile.am: * test-suite/standalone/test-stack-overflow: New test to handle mmap/malloc failure.