aboutsummaryrefslogtreecommitdiff
path: root/srfi/srfi-64.scm
blob: f053443b398f714545921290df72880d8d0c988a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
(define-module (srfi srfi-64)
  #:export (test-begin ;; must be listed first, since in Kawa (at least) it is "magic".
            test-end test-assert test-eqv test-eq test-equal
            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 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
                                                  ; Misc test-runner functions
            test-runner? test-runner-reset test-runner-null
            test-runner-simple test-runner-current test-runner-factory test-runner-get
            test-runner-create test-runner-test-name
            ;; test-runner field setter and getter functions - see %test-record-define:
            test-runner-pass-count test-runner-pass-count!
            test-runner-fail-count test-runner-fail-count!
            test-runner-xpass-count test-runner-xpass-count!
            test-runner-xfail-count test-runner-xfail-count!
            test-runner-skip-count test-runner-skip-count!
            test-runner-group-stack test-runner-group-stack!
            test-runner-on-test-begin test-runner-on-test-begin!
            test-runner-on-test-end test-runner-on-test-end!
            test-runner-on-group-begin test-runner-on-group-begin!
            test-runner-on-group-end test-runner-on-group-end!
            test-runner-on-final test-runner-on-final!
            test-runner-on-bad-count test-runner-on-bad-count!
            test-runner-on-bad-end-name test-runner-on-bad-end-name!
            test-result-alist test-result-alist!
            test-runner-aux-value test-runner-aux-value!
            ;; default/simple call-back functions, used in default test-runner,
            ;; but can be called to construct more complex ones.
            test-on-group-begin-simple test-on-group-end-simple
            test-on-bad-count-simple test-on-bad-end-name-simple
            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")
Ludovic Courtès 2017-01-30store: Add 'add-data-to-store'....Ludovic Courtès 2017-01-15daemon: Client settings no longer override daemon settings....Ludovic Courtès 2016-12-08store: 'open-connection' no longer raises '&nar-error' for protocol errors....Ludovic Courtès 2016-05-31daemon: Substitute queries return immediately when substitutes are disabled....Ludovic Courtès 2016-05-24store: 'requisites' now takes a list of store items....Ludovic Courtès 2016-04-03build: Add a Guile custom test driver using SRFI-64....Mathieu Lirzin 2016-03-16substitute: Honor client-provided empty URL list....Ludovic Courtès 2016-03-05store: Add 'references/substitutes'....Ludovic Courtès 2016-02-26store: 'path-info-deriver' is #f when there is no deriver....Ludovic Courtès 2016-02-12store: Add monadic access to '%current-system'....Ludovic Courtès 2015-12-08store: Allow clients to request multiple builds....Ludovic Courtès 2015-12-03store: Add mode parameter to 'build-paths'....Ludovic Courtès 2015-11-01tests: Make sure the daemon dumps directory entries deterministically....Ludovic Courtès 2015-07-13substitute: Honor "substitute-urls" option passed by "untrusted" clients....Ludovic Courtès 2015-07-13substitute: Store cached narinfo in cache-specific sub-directories....Ludovic Courtès 2015-06-06store: Add 'verify-store' RPC....Ludovic Courtès 2015-04-04store: Add query-path-info operation....David Thompson 2015-03-25substitute: Rename cache directory from "substitute-binary" to "substitute"....Ludovic Courtès 2015-03-25Rename 'guix substitute-binary' to 'guix substitute'....Ludovic Courtès 2015-03-05store: Attempt to decode build logs as UTF-8....Ludovic Courtès 2015-02-02tests: Don't dump the list of dead items in the test log....Ludovic Courtès 2015-02-02store: Add 'build-things'....Ludovic Courtès 2015-02-02tests: Add 'with-derivation-substitute' and use it....Ludovic Courtès 2015-02-02tests: Further factorize substitute mocks....Ludovic Courtès 2015-02-02tests: Use 'with-store' as appropriate....Ludovic Courtès 2015-01-17store: Add #:recursive? parameter to 'export-paths'....Ludovic Courtès 2015-01-14store: Add 'store-lower'....Ludovic Courtès