3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

tests: nfs: Ensure 'rpcinfo' can be found.

The test was failing since 8b9cad01e9.

* gnu/tests/nfs.scm (run-nfs-test)[test]("RPC service running"): Add
'setenv' call for PATH.
This commit is contained in:
Ludovic Courtès 2020-03-16 12:34:13 +01:00
parent a37e03d60e
commit e8cec7cc12
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016, 2017 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016, 2017, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
@ -101,6 +101,10 @@
(marionette-eval
'(begin
(use-modules (gnu services herd))
;; Ensure 'rpcinfo' can be found below.
(setenv "PATH" "/run/current-system/profile/bin")
(start-service 'rpcbind-daemon))
marionette))