diff options
author | Mark H Weaver <mhw@netris.org> | 2014-08-23 20:43:51 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-08-23 20:43:51 -0400 |
commit | ce3e35ed6af5c502029fb79cb5e2bdbca528d841 (patch) | |
tree | f2db16e01972bc8dcf5d69e4c94b8c4da52e9547 /tests/union.scm | |
parent | fa5731baabdb4a9240aad2154847f352aed02d6e (diff) | |
parent | f0dafadcfc0336e8d437f39c3563029eaa0f7953 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'tests/union.scm')
-rw-r--r-- | tests/union.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/union.scm b/tests/union.scm index 74c51cbed9..7e55670b86 100644 --- a/tests/union.scm +++ b/tests/union.scm @@ -16,8 +16,8 @@ ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. - (define-module (test-union) + #:use-module (guix tests) #:use-module (guix store) #:use-module (guix utils) #:use-module (guix derivations) @@ -34,12 +34,7 @@ ;; Exercise the (guix build union) module. (define %store - (false-if-exception (open-connection))) - -(when %store - ;; By default, use %BOOTSTRAP-GUILE for the current system. - (let ((drv (package-derivation %store %bootstrap-guile))) - (%guile-for-build drv))) + (open-connection-for-tests)) (test-begin "union") |