about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/programs/gnupg/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/programs/gnupg/default.nix b/tests/programs/gnupg/default.nix
index 098178a4..bb0ed107 100644
--- a/tests/programs/gnupg/default.nix
+++ b/tests/programs/gnupg/default.nix
@@ -53,8 +53,10 @@ in {
     machine.wait_for_x()
 
     def ssh(cmd: str) -> str:
+      # XXX: Redirecting stdout to /dev/null is a workaround and we ideally
+      #      should *ONLY* get stdout on error.
       return "ssh -q -i /root/id_ed25519 -o StrictHostKeyChecking=no" \
-             f" alice@127.0.0.1 -- {quote(cmd)}"
+             f" alice@127.0.0.1 -- {quote(cmd)} > /dev/null"
 
     def xsu(cmd: str) -> str:
       return f"DISPLAY=:0 su alice -c {quote(cmd)}"