summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2021-11-06 22:38:07 +0100
committerGitHub <noreply@github.com>2021-11-06 22:38:07 +0100
commitc0e4e234296937309dd3bcb0e2ab15ee35c6facb (patch)
tree350b27dd3e9e594a72287e6a66c530dddcb6787c /nixos
parent8f6392cec9ab0392a2c959796e6c18b8823cbc33 (diff)
parentd64f7a76fb53a98f9f699f9d1c6b36053c486b6f (diff)
downloadnixpkgs-c0e4e234296937309dd3bcb0e2ab15ee35c6facb.tar
nixpkgs-c0e4e234296937309dd3bcb0e2ab15ee35c6facb.tar.gz
nixpkgs-c0e4e234296937309dd3bcb0e2ab15ee35c6facb.tar.bz2
nixpkgs-c0e4e234296937309dd3bcb0e2ab15ee35c6facb.tar.lz
nixpkgs-c0e4e234296937309dd3bcb0e2ab15ee35c6facb.tar.xz
nixpkgs-c0e4e234296937309dd3bcb0e2ab15ee35c6facb.tar.zst
nixpkgs-c0e4e234296937309dd3bcb0e2ab15ee35c6facb.zip
Merge pull request #144924 from helsinki-systems/fix/plasma5-test
nixos/tests.plasma5: Fix after #142747
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/plasma5.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/plasma5.nix b/nixos/tests/plasma5.nix
index 7a5b7db9462..281c9843e90 100644
--- a/nixos/tests/plasma5.nix
+++ b/nixos/tests/plasma5.nix
@@ -42,15 +42,15 @@ import ./make-test-python.nix ({ pkgs, ...} :
         machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
 
     with subtest("Run Dolphin"):
-        machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 dolphin &'")
+        machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 dolphin >&2 &'")
         machine.wait_for_window(" Dolphin")
 
     with subtest("Run Konsole"):
-        machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 konsole &'")
+        machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 konsole >&2 &'")
         machine.wait_for_window("Konsole")
 
     with subtest("Run systemsettings"):
-        machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 systemsettings5 &'")
+        machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 systemsettings5 >&2 &'")
         machine.wait_for_window("Settings")
 
     with subtest("Wait to get a screenshot"):