From 853d378716ccad5bc72d4045363091a1630425cd Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 8 Apr 2017 14:41:06 +0100 Subject: Make test-modules a parameter --- gnu/tests.scm | 11 ++++++----- 1 file 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! 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 -- cgit v1.2.3