build: check-boot.sh: Allow overriding of TESTS.

* build-aux/check-boot.sh (TESTS): Rename to...
(boot_tests): ...this.
(TESTS): Use boot_tests as fall-back.
(XFAIL_TESTS): Use empty as fall-back.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-12-30 11:09:32 +01:00
parent ff40b59175
commit e63d7c9517
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#! /bin/bash
# GNU Mes --- Maxwell Equations of Software
# Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
# Copyright © 2018,2019,2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
#
# This file is part of GNU Mes.
#
@ -22,7 +22,7 @@ set -e
. ./config.sh
set -u
TESTS="
boot_tests="
scaffold/boot/00-zero.scm
scaffold/boot/01-true.scm
@ -115,7 +115,9 @@ scaffold/boot/memory.scm
scaffold/boot/numbers.scm
"
XFAIL_TESTS=
recheck=true
TESTS=${TESTS-$boot_tests}
XFAIL_TESTS=${XFAIL_TESTS-}
test_ext=.scm
log_compiler="${SHELL} ${srcdest}build-aux/test-boot.sh"