about summary refs log tree commit diff
path: root/nixos/tests/gnome-flashback.nix
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-10-06 16:04:24 +0800
committerBobby Rong <rjl931189261@126.com>2023-10-06 16:04:24 +0800
commit190a819ecb16f39f349dbb34b7f50527c56e86c0 (patch)
tree8bdd4071384bb509af00919db1c33713c6ae65bc /nixos/tests/gnome-flashback.nix
parentfc096a6d9cd3736df7ea1ce9b369ccfeedf07746 (diff)
nixosTests.gnome-flashback: Ensure gnome-flashback-media-keys starts
Diffstat (limited to 'nixos/tests/gnome-flashback.nix')
-rw-r--r--nixos/tests/gnome-flashback.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/nixos/tests/gnome-flashback.nix b/nixos/tests/gnome-flashback.nix
index 876d36477c1a9..3e59e3fc03409 100644
--- a/nixos/tests/gnome-flashback.nix
+++ b/nixos/tests/gnome-flashback.nix
@@ -49,9 +49,10 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : {
           assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
 
       with subtest("Wait for Metacity"):
-          machine.wait_until_succeeds(
-              "pgrep metacity"
-          )
+          machine.wait_until_succeeds("pgrep metacity")
+
+      with subtest("Regression test for #233920"):
+          machine.wait_until_succeeds("pgrep -fa gnome-flashback-media-keys")
           machine.sleep(20)
           machine.screenshot("screen")
     '';