summaryrefslogtreecommitdiff
path: root/srfi/srfi-64.scm
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2014-02-24 16:10:40 -0500
committerMark H Weaver <mhw@netris.org>2014-02-24 16:30:08 -0500
commit8fade76f5d35fac321a5a2c4c6e142f03a69fcfa (patch)
treea6ae571cc117c58954f62af0051a6ea3112655e2 /srfi/srfi-64.scm
parentc4dc4466d6012e8f7875beb3e68a7dff8bc13152 (diff)
downloadguix-8fade76f5d35fac321a5a2c4c6e142f03a69fcfa.tar.gz
guix-8fade76f5d35fac321a5a2c4c6e142f03a69fcfa.tar.xz
Update SRFI-64 to the latest upstream version.
* srfi/srfi-64.scm: Export 'test-group'. Call 'cond-expand-provide'. * srfi/srfi-64.upstream.scm: Update to the latest upstream version.
Diffstat (limited to 'srfi/srfi-64.scm')
-rw-r--r--srfi/srfi-64.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/srfi/srfi-64.scm b/srfi/srfi-64.scm
index 03a1c0c1d5..f053443b39 100644
--- a/srfi/srfi-64.scm
+++ b/srfi/srfi-64.scm
@@ -4,7 +4,7 @@
test-approximate test-assert test-error test-apply test-with-runner
test-match-nth test-match-all test-match-any test-match-name
test-skip test-expect-fail test-read-eval-string
- test-runner-group-path test-group-with-cleanup
+ test-runner-group-path test-group test-group-with-cleanup
test-result-ref test-result-set! test-result-clear test-result-remove
test-result-kind test-passed?
test-log-to-file
@@ -35,5 +35,7 @@
test-on-final-simple test-on-test-end-simple
test-on-final-simple))
+(cond-expand-provide (current-module) '(srfi-64))
+
;; Load Per Bothner's original SRFI-64 implementation.
(load-from-path "srfi/srfi-64.upstream.scm")