diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-10-26 20:04:06 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-27 01:00:41 +0200 |
commit | d88767a39986692e4d89d2d4ec8edfc0d4f51782 (patch) | |
tree | da3dd70331d514024893b465be59ea7fd3095b6d /build-aux | |
parent | d6aca5835a9b4b2cfb1cf8191faac6628975de8a (diff) | |
download | patches-d88767a39986692e4d89d2d4ec8edfc0d4f51782.tar patches-d88767a39986692e4d89d2d4ec8edfc0d4f51782.tar.gz |
tests: Use #:fallback? #t when building system tests.
* build-aux/run-system-tests.scm (run-system-tests): Pass #:fallback? #t
to 'set-build-options*'.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/run-system-tests.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/run-system-tests.scm b/build-aux/run-system-tests.scm index 3f3a70e7b4..b582bc5e57 100644 --- a/build-aux/run-system-tests.scm +++ b/build-aux/run-system-tests.scm @@ -68,7 +68,8 @@ (out -> (map derivation->output-path drv))) (mbegin %store-monad (show-what-to-build* drv) - (set-build-options* #:keep-going? #t #:keep-failed? #t) + (set-build-options* #:keep-going? #t #:keep-failed? #t + #:fallback? #t) (built-derivations* drv) (mlet %store-monad ((valid (filterm (store-lift valid-path?) out)) |