diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-08-29 22:32:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-08-29 23:32:01 +0200 |
commit | d258c791441b46705f4360cf141343363d1751f2 (patch) | |
tree | 416a18b4c8c6acbd5a9857f57d0bc70a08d818d3 /gnu/tests.scm | |
parent | de5cbd4a38a33e0412f1c481fe8e01a871dc13e5 (diff) | |
download | guix-d258c791441b46705f4360cf141343363d1751f2.tar guix-d258c791441b46705f4360cf141343363d1751f2.tar.gz |
tests: Warn about test module load failures.
Reported by Clément Lassieur <clement@lassieur.org>
and Leo Famulari <leo@famulari.name> at
<https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32545#11>.
* gnu/tests.scm (test-modules): Pass #:warn to 'scheme-modules'.
Diffstat (limited to 'gnu/tests.scm')
-rw-r--r-- | gnu/tests.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/tests.scm b/gnu/tests.scm index 5d4a4f8062..9e8eed7d95 100644 --- a/gnu/tests.scm +++ b/gnu/tests.scm @@ -22,6 +22,7 @@ #:use-module (guix gexp) #:use-module (guix utils) #:use-module (guix records) + #:use-module ((guix ui) #:select (warn-about-load-error)) #:use-module (gnu bootloader) #:use-module (gnu bootloader grub) #:use-module (gnu system) @@ -258,7 +259,8 @@ the system under test." (define (test-modules) "Return the list of modules that define system tests." (scheme-modules (dirname (search-path %load-path "guix.scm")) - "gnu/tests")) + "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 |