1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Compile some standalone tests to bytecode

* 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.
This commit is contained in:
Andy Wingo 2014-04-08 10:06:40 +02:00
parent 85270a8c89
commit 1d8b325994
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
#!/bin/sh
guild compile "$0"
exec guile -q -s "$0" "$@"
!#

View file

@ -1,4 +1,5 @@
#!/bin/sh
guild compile "$0"
exec guile -q -s "$0" "$@"
!#