summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <christopher.baines@digital.cabinet-office.gov.uk>2017-04-08 14:41:06 +0100
committerChristopher Baines <christopher.baines@digital.cabinet-office.gov.uk>2019-01-30 09:02:07 +0000
commit3030217475925f985c261e5cd9db7e688695f084 (patch)
tree45969b8ce747976aab6357bd40f26c774d00eb62
parent55f3d725d9a87cf7f86f13de3858d2e85362ec98 (diff)
downloadgnu-guix-3030217475925f985c261e5cd9db7e688695f084.tar
gnu-guix-3030217475925f985c261e5cd9db7e688695f084.tar.gz
Make test-modules a parameter
-rw-r--r--gnu/tests.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/tests.scm b/gnu/tests.scm
index 9e8eed7d95..0978828f8c 100644
--- a/gnu/tests.scm
+++ b/gnu/tests.scm
@@ -256,11 +256,12 @@ 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"
- #:warn warn-about-load-error))
+(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"
+ #:warn warn-about-load-error)))
(define (fold-system-tests proc seed)
"Invoke PROC on each system test, passing it the test and the previous