[bug#64356,1/4] tests: xvnc: Fix test.
Commit Message
* gnu/tests/vnc.scm (run-xvnc-test): Use system* instead of invoke.
---
gnu/tests/vnc.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
base-commit: 94ac93042f09b4ba68b7b64ed1feeebd3dab1ea4
@@ -142,11 +142,11 @@ (define (run-xvnc-test)
(marionette-eval
'(begin
;; Check that DCONF_PROFILE is set...
- (invoke "/bin/sh" "-lc" "\
+ (system* "/bin/sh" "-lc" "\
pgrep gdm | head -n1 | xargs -I{} grep -Fq DCONF_PROFILE /proc/{}/environ")
;; ... and that
- (invoke "/bin/sh" "-lc" "\
+ (system* "/bin/sh" "-lc" "\
sudo -E -u gdm env DCONF_PROFILE=/etc/dconf/profile/gdm dbus-run-session \
gsettings get org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type \
| grep -Fq nothing"))