2016-12-20 09:44:43 +00:00
|
|
|
#! /bin/sh
|
|
|
|
# -*-scheme-*-
|
2019-11-03 21:15:11 +00:00
|
|
|
exec ${MES-bin/mes} --no-auto-compile -L ${0%/*} -L module -C module -e '(tests srfi-1)' -s "$0" "$@"
|
2016-12-20 09:44:43 +00:00
|
|
|
!#
|
|
|
|
|
|
|
|
;;; -*-scheme-*-
|
|
|
|
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2016-12-20 09:44:43 +00:00
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; This file is part of GNU Mes.
|
2016-12-20 09:44:43 +00:00
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes is free software; you can redistribute it and/or modify it
|
2016-12-20 09:44:43 +00:00
|
|
|
;;; 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.
|
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes is distributed in the hope that it will be useful, but
|
2016-12-20 09:44:43 +00:00
|
|
|
;;; 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
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2016-12-20 09:44:43 +00:00
|
|
|
|
2018-07-21 11:48:50 +00:00
|
|
|
(define-module (tests srfi-1)
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
#:use-module (mes mes-0)
|
|
|
|
#:use-module (mes test))
|
|
|
|
|
2016-12-20 09:44:43 +00:00
|
|
|
(mes-use-module (srfi srfi-1))
|
|
|
|
(mes-use-module (mes test))
|
|
|
|
|
|
|
|
(pass-if "first dummy" #t)
|
|
|
|
(pass-if-not "second dummy" #f)
|
|
|
|
|
test: Move srfi-1 for-each and map tests to tests/srfi-1.test.
This fixes: `make check MES=guile'.
* tests/srfi-1.test ("map 1,2", "map 2,1", "for-each 1,2",
for-each 2,1"): Move from scm.test.
* tests/scm.test ("map 1,2", "map 2,1", "for-each 1,2",
for-each 2,1"): Remove.
2019-05-29 14:30:25 +00:00
|
|
|
(pass-if-equal "map 1,2"
|
|
|
|
'((0 . a))
|
|
|
|
(map (lambda (x y) (cons x y)) '(0) '(a b)))
|
|
|
|
|
|
|
|
(pass-if-equal "map 2,1"
|
|
|
|
'((0 . a))
|
|
|
|
(map (lambda (x y) (cons x y)) '(0 1) '(a)))
|
|
|
|
|
|
|
|
(pass-if "for-each 1,2"
|
|
|
|
(for-each (lambda (x y) (cons x y)) '(0) '(a b)))
|
|
|
|
|
|
|
|
(pass-if "for-each 2,1"
|
|
|
|
(for-each (lambda (x y) (cons x y)) '(0 1) '(a)))
|
|
|
|
|
2016-12-20 09:44:43 +00:00
|
|
|
(pass-if-equal "fold"
|
|
|
|
'(3 2 1)
|
|
|
|
(fold cons '() '(1 2 3)))
|
|
|
|
|
|
|
|
(pass-if-equal "fold-right"
|
|
|
|
'(1 2 3)
|
|
|
|
(fold-right cons '() '(1 2 3)))
|
|
|
|
|
2018-05-20 11:04:20 +00:00
|
|
|
(pass-if-equal "unfold"
|
|
|
|
'(4 3 2 1 foo)
|
|
|
|
(unfold zero? identity 1- 4 (const '(foo))))
|
|
|
|
|
2016-12-20 09:44:43 +00:00
|
|
|
(pass-if-equal "remove"
|
|
|
|
'(1 3)
|
|
|
|
(remove even? '(1 2 3)))
|
|
|
|
|
|
|
|
(pass-if-equal "append-reverse"
|
|
|
|
'(3 2 1 4 5 6)
|
|
|
|
(append-reverse '(1 2 3) '(4 5 6)))
|
|
|
|
|
2016-12-24 11:10:05 +00:00
|
|
|
(pass-if-equal "member lambda"
|
|
|
|
'(4)
|
|
|
|
(member 2 '(1 4) (lambda (x y) (even? y))))
|
|
|
|
|
|
|
|
(pass-if-not "member ="
|
|
|
|
(member 2 '(1 4) =))
|
|
|
|
|
2017-04-02 06:04:25 +00:00
|
|
|
(pass-if-equal "append-map"
|
|
|
|
'(0 0 1)
|
|
|
|
(append-map iota '(1 2)))
|
|
|
|
|
2018-10-06 19:05:43 +00:00
|
|
|
(pass-if-equal "fold-3"
|
|
|
|
'(1 A a 2 B b 3 C c)
|
|
|
|
(fold cons* '() '(3 2 1) '(C B A) '(c b a)))
|
|
|
|
|
|
|
|
(pass-if-equal "fold-right-3"
|
|
|
|
'(1 A a 2 B b 3 C c)
|
|
|
|
(fold-right cons* '() '(1 2 3) '(A B C) '(a b c)))
|
|
|
|
|
2016-12-20 09:44:43 +00:00
|
|
|
(result 'report)
|