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:
Jan (janneke) Nieuwenhuizen 2020-04-25 16:39:43 +02:00
parent dd0e2fea8e
commit c308778ec7
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
2 changed files with 13 additions and 0 deletions

View File

@ -27,6 +27,7 @@ tests/boot.test
tests/read.test
tests/srfi-0.test
tests/macro.test
tests/gc.test
tests/perform.test
tests/base.test
tests/quasiquote.test

12
scaffold/gc-test.scm → tests/gc.test Normal file → Executable file
View 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
;;; Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;;