aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/guile/de-paul-records-test.scm17
1 files changed, 2 insertions, 15 deletions
diff --git a/tests/guile/de-paul-records-test.scm b/tests/guile/de-paul-records-test.scm
index fff1606..7bcc60d 100644
--- a/tests/guile/de-paul-records-test.scm
+++ b/tests/guile/de-paul-records-test.scm
@@ -26,7 +26,6 @@
is-scheme?
#:export? yes,ofcourse
(is-syntactically-scoped? #:default #f)
- (authors #:default '())
#:finalize (lambda (the-lisp)
(set-field the-lisp
(lisp-is-syntactically-scoped?)
@@ -50,7 +49,7 @@
'*lisp))
(test-group "lisp paren-3001"
- (tu:test-equal '(#f () "paren-3001" #f)
+ (tu:test-equal '(#f "paren-3001" #f)
(eval '(begin
(define %paren-3001
(lisp (is-scheme? #f)
@@ -58,12 +57,10 @@
(match %paren-3001
(($* lisp
- authors
is-syntactically-scoped?
name
is-scheme?)
(list is-syntactically-scoped?
- authors
name
is-scheme?))))
(test-env 'lisp)))
@@ -86,7 +83,6 @@
(name #:->
((const 'test-noop))
(string-append name ".1"))
- (authors #:list "Jane Doe")
(is-syntactically-scoped? #t)))
(match `(a . ,%paren-3001.1)
@@ -99,11 +95,7 @@
'(match (vector %paren-3001.1)
(#(($* lisp is-scheme? name))
(list is-scheme? name)))
- (test-env 'lisp)))
-
- (tu:test-equal '("Jane Doe")
- (eval '(lisp-authors %paren-3001.1)
- (test-env 'lisp))))
+ (test-env 'lisp))))
(test-group "lisp paren-3003"
(tu:test-equal '(#t #t)
@@ -113,7 +105,6 @@
(let ((name "paren-3003"))
(lisp #:<- (lisp)
name
- (authors #:list "Jane Doe" "John Smith")
(is-scheme? (string-suffix? "-3003" name)))))
(match %paren-3003
@@ -123,10 +114,6 @@
(tu:test-equal "paren-3003"
(eval '(lisp-name %paren-3003)
- (test-env 'lisp)))
-
- (tu:test-equal '("Jane Doe" "John Smith")
- (eval '(lisp-authors %paren-3003)
(test-env 'lisp))))
(test-group "lisp paren-3004"
t. Ludovic Courtès 2018-02-26build: Require Guile >= 2.0.13....* README, configure.ac, doc/guix.texi (Requirements): Increase minimum Guile version from 2.0.9 to 2.0.13. * config-daemon.ac: Remove use of 'GUIX_CHECK_UNBUFFERED_CBIP'. * m4/guix.m4 (GUIX_CHECK_UNBUFFERED_CBIP): Remove. * guix/build/download.scm (current-http-proxy): Remove. * guix/build/syscalls.scm (%libc-errno-pointer, errno): Remove. (syscall->procedure): Use #:return-errno unconditionally. * guix/hash.scm (open-sha256-input-port)[unbuffered]: Remove outdated comment. * guix/http-client.scm (when-guile<=2.0.5-or-otherwise-broken): Remove. <top level>: Remove 'when-guile<=2.0.5-or-otherwise-broken' block. * guix/scripts/substitute.scm (fetch): Remove 'guile-version>?' conditional. * tests/hash.scm (supports-unbuffered-cbip?): Remove. <top level>: Remove 'test-skip' call. Ludovic Courtès 2018-01-07doc: Mark zlib as mandatory, libbz2 as optional....* doc/guix.texi (Requirements): Move zlib to mandatory and libbz2 to optional. * README: Ditto. Ludovic Courtès 2018-01-01doc: Update requirements in 'README'....* README (Requirements): Update. Mathieu Lirzin 2017-09-25README: Replace http:// with https:// where applicable.Marius Bakke