about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-05-19 14:50:55 +0200
committerGitHub <noreply@github.com>2021-05-19 14:50:55 +0200
commitc21dd33953823bf936625ae7451c708e4a3b1240 (patch)
tree24e9f6f14f0bd3b145b7664bc55bb7d0dd1b1ef5 /nixos/tests
parent633b9193d0cf811faac536c57402624784651213 (diff)
parent5e2cedfae379d2b672f0bd625213ba36736051e2 (diff)
Merge pull request #123609 from berbiche/cagebreak-use-waylands-utils-in-test
nixos/tests/cagebreak: use wayland-info instead of wallutils
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/cagebreak.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/cagebreak.nix b/nixos/tests/cagebreak.nix
index 7b2c72bcafceb..e343cd88e7f57 100644
--- a/nixos/tests/cagebreak.nix
+++ b/nixos/tests/cagebreak.nix
@@ -33,7 +33,7 @@ in
 
     hardware.opengl.enable = true;
     programs.xwayland.enable = true;
-    environment.systemPackages = [ pkgs.cagebreak pkgs.wallutils ];
+    environment.systemPackages = [ pkgs.cagebreak pkgs.wayland-utils ];
 
     virtualisation.memorySize = 1024;
     # Need to switch to a different VGA card / GPU driver than the default one (std) so that Cagebreak can launch:
@@ -51,7 +51,7 @@ in
     machine.wait_for_file("${XDG_RUNTIME_DIR}/wayland-0")
 
     with subtest("ensure wayland works with wayinfo from wallutils"):
-        print(machine.succeed("env XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR} wayinfo"))
+        print(machine.succeed("env XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR} wayland-info"))
 
     # TODO: Fix the XWayland test (log the cagebreak output to debug):
     # with subtest("ensure xwayland works with xterm"):