system: Default to Linux-libre 4.0.
[guix.git] / srfi / srfi-64.scm
blobf053443b398f714545921290df72880d8d0c988a
1 (define-module (srfi srfi-64)
2   #:export (test-begin ;; must be listed first, since in Kawa (at least) it is "magic".
3             test-end test-assert test-eqv test-eq test-equal
4             test-approximate test-assert test-error test-apply test-with-runner
5             test-match-nth test-match-all test-match-any test-match-name
6             test-skip test-expect-fail test-read-eval-string
7             test-runner-group-path test-group test-group-with-cleanup
8             test-result-ref test-result-set! test-result-clear test-result-remove
9             test-result-kind test-passed?
10             test-log-to-file
11                                                   ; Misc test-runner functions
12             test-runner? test-runner-reset test-runner-null
13             test-runner-simple test-runner-current test-runner-factory test-runner-get
14             test-runner-create test-runner-test-name
15             ;; test-runner field setter and getter functions - see %test-record-define:
16             test-runner-pass-count test-runner-pass-count!
17             test-runner-fail-count test-runner-fail-count!
18             test-runner-xpass-count test-runner-xpass-count!
19             test-runner-xfail-count test-runner-xfail-count!
20             test-runner-skip-count test-runner-skip-count!
21             test-runner-group-stack test-runner-group-stack!
22             test-runner-on-test-begin test-runner-on-test-begin!
23             test-runner-on-test-end test-runner-on-test-end!
24             test-runner-on-group-begin test-runner-on-group-begin!
25             test-runner-on-group-end test-runner-on-group-end!
26             test-runner-on-final test-runner-on-final!
27             test-runner-on-bad-count test-runner-on-bad-count!
28             test-runner-on-bad-end-name test-runner-on-bad-end-name!
29             test-result-alist test-result-alist!
30             test-runner-aux-value test-runner-aux-value!
31             ;; default/simple call-back functions, used in default test-runner,
32             ;; but can be called to construct more complex ones.
33             test-on-group-begin-simple test-on-group-end-simple
34             test-on-bad-count-simple test-on-bad-end-name-simple
35             test-on-final-simple test-on-test-end-simple
36             test-on-final-simple))
38 (cond-expand-provide (current-module) '(srfi-64))
40 ;; Load Per Bothner's original SRFI-64 implementation.
41 (load-from-path "srfi/srfi-64.upstream.scm")