tests: rsync: Set PATH.

This is a followup to 8b9cad01e9, which
would leave PATH unset.

* gnu/tests/rsync.scm (run-rsync-test)[test]("service running"): Add
call to 'setenv' for PATH.
This commit is contained in:
Ludovic Courtès 2020-03-16 10:33:29 +01:00
parent bc6bf142d3
commit 4df02ab675
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 0 deletions

View File

@ -64,6 +64,10 @@ PORT."
(marionette-eval
'(begin
(use-modules (gnu services herd))
;; Make sure the 'rsync' command is found.
(setenv "PATH" "/run/current-system/profile/bin")
(start-service 'rsync))
marionette))