about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorOPNA2608 <christoph.neidahl@gmail.com>2023-02-18 19:27:51 +0100
committerOPNA2608 <christoph.neidahl@gmail.com>2023-02-18 20:03:02 +0100
commitb2a74bc0ab17f32532318e80b32e0759583a287a (patch)
tree99c6babc1ab5cebd5becc353ef2ff272aaf3bba1 /nixos/tests
parent4f3353c775c40dd7fbfb6718ef0175c13d731227 (diff)
tests/miriway: Refer to upstream issue about keyboard problem
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/miriway.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/tests/miriway.nix b/nixos/tests/miriway.nix
index c4c50646f0153..2ddac4cc61de9 100644
--- a/nixos/tests/miriway.nix
+++ b/nixos/tests/miriway.nix
@@ -3,7 +3,10 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
 
   meta = {
     maintainers = with lib.maintainers; [ OPNA2608 ];
-    # FIXME On ARM Miriway inside the VM doesn't receive keyboard inputs, why?
+    # Natively running Mir has problems with capturing the first registered libinput device.
+    # In our VM  runners on ARM and on some hardware configs (my RPi4, distro-independent), this misses the keyboard.
+    # It can be worked around by dis- and reconnecting the affected hardware, but we can't do this in these tests.
+    # https://github.com/MirServer/mir/issues/2837
     broken = pkgs.stdenv.hostPlatform.isAarch;
   };