summary refs log tree commit diff
path: root/nixos/tests/misc.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-03-25 18:29:21 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-03-25 18:29:21 +0300
commitd27f7942b7ab745c5a00a993e2316c46654117d1 (patch)
treed2c23cc16caa285d50a119e088fb2d03b8f85c8d /nixos/tests/misc.nix
parent3301258190101c6b771c70490b1e66db3e758cd3 (diff)
downloadnixpkgs-d27f7942b7ab745c5a00a993e2316c46654117d1.tar
nixpkgs-d27f7942b7ab745c5a00a993e2316c46654117d1.tar.gz
nixpkgs-d27f7942b7ab745c5a00a993e2316c46654117d1.tar.bz2
nixpkgs-d27f7942b7ab745c5a00a993e2316c46654117d1.tar.lz
nixpkgs-d27f7942b7ab745c5a00a993e2316c46654117d1.tar.xz
nixpkgs-d27f7942b7ab745c5a00a993e2316c46654117d1.tar.zst
nixpkgs-d27f7942b7ab745c5a00a993e2316c46654117d1.zip
nixos/tests/misc: Fix on aarch64
The psmouse module is for PS/2 mouse only, which doesn't exist outside
x86. But we can test for the mousedev module just as well which is used
for the '-device usb-tablet' emulated by QEMU.
Diffstat (limited to 'nixos/tests/misc.nix')
-rw-r--r--nixos/tests/misc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/misc.nix b/nixos/tests/misc.nix
index 4fd9466dc50..179c95e7643 100644
--- a/nixos/tests/misc.nix
+++ b/nixos/tests/misc.nix
@@ -96,7 +96,7 @@ import ./make-test.nix ({ pkgs, ...} : rec {
       $machine->succeed("systemctl start systemd-udev-settle.service");
       subtest "udev-auto-load", sub {
           $machine->waitForUnit('systemd-udev-settle.service');
-          $machine->succeed('lsmod | grep psmouse');
+          $machine->succeed('lsmod | grep mousedev');
       };
 
       # Test whether systemd-tmpfiles-clean works.