From 1f359b07a8f223749f140454bc751182bbab16e1 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Sat, 6 Oct 2018 07:13:04 +0200 Subject: [PATCH] core: Add vector test. * scaffold/boot/11-vector.scm: New test. * build-aux/check-boot.sh: Run it. --- build-aux/check-boot.sh | 1 + scaffold/boot/11-vector.scm | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 scaffold/boot/11-vector.scm diff --git a/build-aux/check-boot.sh b/build-aux/check-boot.sh index 4d494b78..644728ae 100755 --- a/build-aux/check-boot.sh +++ b/build-aux/check-boot.sh @@ -45,6 +45,7 @@ tests=" 10-cons.scm 11-list.scm +11-vector.scm 12-car.scm 13-cdr.scm 14-exit.scm diff --git a/scaffold/boot/11-vector.scm b/scaffold/boot/11-vector.scm new file mode 100644 index 00000000..931e679f --- /dev/null +++ b/scaffold/boot/11-vector.scm @@ -0,0 +1,19 @@ +;;; GNU Mes --- Maxwell Equations of Software +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen +;;; +;;; This file is part of GNU Mes. +;;; +;;; GNU Mes is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Mes is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Mes. If not, see . + +#(0 1 2)