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-10-04 20:41:50 +0100 |
commit | 2648030bb788d471bcff4821e52e331f28bd8338 (patch) | |
tree | 1612467cd5f75eb072989b6b6beb39a93b24304d | |
parent | d9fd299ad883947d6bf467f513bed14e99c32610 (diff) | |
download | gnu-guix-2648030bb788d471bcff4821e52e331f28bd8338.tar gnu-guix-2648030bb788d471bcff4821e52e331f28bd8338.tar.gz |
Make test-modules a parameter
-rw-r--r-- | gnu/tests.scm | 11 |
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 |