diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-02 22:38:52 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-02 22:38:52 +0100 |
commit | 81dbd783bd9afabd1d8720c9b60a6a93492bb581 (patch) | |
tree | 3b99899c497958cc608d9889c77b11f4696e9517 /tests | |
parent | 0afdc48532ea7d8eea32b3e3b78ba3832e7f18b2 (diff) | |
download | patches-81dbd783bd9afabd1d8720c9b60a6a93492bb581.tar patches-81dbd783bd9afabd1d8720c9b60a6a93492bb581.tar.gz |
tests: Run without substitutes.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm: Set
#:use-substitutes? #f for %STORE.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/builders.scm | 4 | ||||
-rw-r--r-- | tests/derivations.scm | 3 | ||||
-rw-r--r-- | tests/packages.scm | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/tests/builders.scm b/tests/builders.scm index 8d2d75aa7f..d79603f7da 100644 --- a/tests/builders.scm +++ b/tests/builders.scm @@ -34,6 +34,10 @@ (define %store (false-if-exception (open-connection))) +(when %store + ;; Make sure we build everything by ourselves. + (set-build-options %store #:use-substitutes? #f)) + (define %bootstrap-inputs ;; Use the bootstrap inputs so it doesn't take ages to run these tests. ;; This still involves building Make, Diffutils, and Findutils. diff --git a/tests/derivations.scm b/tests/derivations.scm index 2497fa8ec6..02f0a9b2a1 100644 --- a/tests/derivations.scm +++ b/tests/derivations.scm @@ -39,6 +39,9 @@ (false-if-exception (open-connection))) (when %store + ;; Make sure we build everything by ourselves. + (set-build-options %store #:use-substitutes? #f) + ;; By default, use %BOOTSTRAP-GUILE for the current system. (let ((drv (package-derivation %store %bootstrap-guile))) (%guile-for-build drv))) diff --git a/tests/packages.scm b/tests/packages.scm index 005e605e83..8c2e6b9d08 100644 --- a/tests/packages.scm +++ b/tests/packages.scm @@ -35,6 +35,10 @@ (define %store (false-if-exception (open-connection))) +(when %store + ;; Make sure we build everything by ourselves. + (set-build-options %store #:use-substitutes? #f)) + (define %bootstrap-inputs ;; Use the bootstrap inputs so it doesn't take ages to run these tests. ;; This still involves building GNU Make and GNU Diffutils. |