diff options
author | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2017-04-08 14:41:06 +0100 |
---|---|---|
committer | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2018-03-11 15:59:20 +0000 |
commit | b92f56bbef9a00f40eb4a7bb4ae38de56a4fc938 (patch) | |
tree | 330bc9aa8be3ebc793303ff5cf41806fd25d5f82 | |
parent | cdadb141bf026a1c0bf2c2c96214f9004f1d79e1 (diff) | |
download | gnu-guix-b92f56bbef9a00f40eb4a7bb4ae38de56a4fc938.tar gnu-guix-b92f56bbef9a00f40eb4a7bb4ae38de56a4fc938.tar.gz |
Make test-modules a parameter
-rw-r--r-- | gnu/tests.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/tests.scm b/gnu/tests.scm index 2aef370af5..3801e4ca77 100644 --- a/gnu/tests.scm +++ b/gnu/tests.scm @@ -256,10 +256,11 @@ the system under test." (set-record-type-printer! <system-test> write-system-test) -(define (test-modules) - "Return the list of modules that define system tests." - (scheme-modules (dirname (search-path %load-path "guix.scm")) - "gnu/tests")) +(define test-modules + ;; Return the list of modules that define system tests. + (make-parameter + (scheme-modules (dirname (search-path %load-path "guix.scm")) + "gnu/tests"))) (define (fold-system-tests proc seed) "Invoke PROC on each system test, passing it the test and the previous |