From e9bed5e9e7e4f9e6d92794fd159164cc0936a911 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Mon, 21 Feb 2022 13:34:38 +0100 Subject: tests: nix: Fix it. The support has been removed in Nix 2.4: https://github.com/NixOS/nix/pull/4025. Rely on the store ping command instead to check that we can communicate with the daemon. * gnu/tests/package-management.scm (run-nix-test): Use the store ping command instead of building a dummy derivation. --- gnu/tests/package-management.scm | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/gnu/tests/package-management.scm b/gnu/tests/package-management.scm index fe897944d0..57c20291b4 100644 --- a/gnu/tests/package-management.scm +++ b/gnu/tests/package-management.scm @@ -85,22 +85,9 @@ '(begin ;; Wait for nix-daemon to be up and running. (start-service 'nix-daemon) - (with-output-to-file "guix-test.nix" - (lambda () - (display "\ -with import ; - -derivation { - system = builtins.currentSystem; - name = \"guix-test\"; - builder = shell; - args = [\"-c\" \"mkdir $out\\necho FOO > $out/foo\"]; - PATH = coreutils; -} -"))) - (zero? (system* (string-append #$nix "/bin/nix-build") - "--substituters" "" "--debug" "--no-out-link" - "guix-test.nix"))) + (zero? (system* (string-append #$nix "/bin/nix") + "--experimental-features" "nix-command" + "store" "ping" "--store" "daemon"))) marionette)) (test-end)))) -- cgit v1.2.3