diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-02-11 23:17:00 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-02-11 23:51:39 +0100 |
commit | bc1ad69605b6c3e2744694758d63dfc216107a82 (patch) | |
tree | 5eee850233d5f66a9addded1ef6ee3f69e78adc0 /tests/profiles.scm | |
parent | c334b7c52fe77b68a90b23fbac5c9de7337e607b (diff) |
tests: Pass #:guile to 'computed-file' & co.
Fixes a regression introduced in
af57d1bf6c46f47d82dbc234dde1e16fa8634e9d whereby tests would end up
building the world.
* guix/gexp.scm (mixed-text-file): Add #:guile parameter and honor it.
* tests/gexp.scm ("mixed-text-file"): Pass #:guile to 'mixed-text-file'.
("file-union"): Pass #:guile to 'file-union'.
("lower-object, computed-file"): Pass #:guile to 'computed-file'.
("lower-object, computed-file + grafts"): Likewise.
* tests/packages.scm ("origin->derivation, single file with snippet"):
Likewise.
* tests/profiles.scm ("profile-derivation, ordering & collisions"):
Likewise.
* guix/tests.scm (test-file): Likewise.
Diffstat (limited to 'tests/profiles.scm')
-rw-r--r-- | tests/profiles.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/profiles.scm b/tests/profiles.scm index cac5b73347..d59d75985f 100644 --- a/tests/profiles.scm +++ b/tests/profiles.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013-2022 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014 Alex Kost <alezost@gmail.com> ;;; ;;; This file is part of GNU Guix. @@ -302,7 +302,8 @@ (call-with-output-file (string-append #$output "/bin/guile") (lambda (port) - (display "Fake!\n" port)))))))) + (display "Fake!\n" port)))) + #:guile %bootstrap-guile)))) (guile (package->derivation %bootstrap-guile)) (drv (profile-derivation (manifest (list entry1 entry2)) #:hooks '() |