tests: Add gc.test.
* tests/gc.test: New file. * build-aux/check-mes.sh (TESTS): Add it. * scaffold/gc-test.scm: Remove.
This commit is contained in:
parent
dd0e2fea8e
commit
c308778ec7
|
@ -27,6 +27,7 @@ tests/boot.test
|
||||||
tests/read.test
|
tests/read.test
|
||||||
tests/srfi-0.test
|
tests/srfi-0.test
|
||||||
tests/macro.test
|
tests/macro.test
|
||||||
|
tests/gc.test
|
||||||
tests/perform.test
|
tests/perform.test
|
||||||
tests/base.test
|
tests/base.test
|
||||||
tests/quasiquote.test
|
tests/quasiquote.test
|
||||||
|
|
12
scaffold/gc-test.scm → tests/gc.test
Normal file → Executable file
12
scaffold/gc-test.scm → tests/gc.test
Normal file → Executable file
|
@ -1,3 +1,15 @@
|
||||||
|
#! /bin/sh
|
||||||
|
# -*-scheme-*-
|
||||||
|
MES_ARENA=10000
|
||||||
|
MES_MAX_ARENA=$MES_ARENA
|
||||||
|
export MES_ARENA
|
||||||
|
export MES_MAX_ARENA
|
||||||
|
if [ "$MES" != guile ]; then
|
||||||
|
MES_BOOT=$0 exec ${MES-mes}
|
||||||
|
fi
|
||||||
|
exec ${MES-mes} --no-auto-compile -L ${0%/*} -L module -C module -e '(tests boot)' -s "$0" "$@"
|
||||||
|
!#
|
||||||
|
|
||||||
;;; GNU Mes --- Maxwell Equations of Software
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;; Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
Loading…
Reference in a new issue