lol

nixosTests.xfce: Check if any coredumps are found

Adds a regression test for https://gitlab.xfce.org/xfce/xfconf/-/issues/35.

+3
+3
nixos/tests/xfce.nix
··· 66 66 machine.succeed("su - ${user.name} -c 'DISPLAY=:0 thunar >&2 &'") 67 67 machine.wait_for_window("Thunar") 68 68 machine.wait_for_text('(Pictures|Public|Templates|Videos)') 69 + 70 + with subtest("Check if any coredumps are found"): 71 + machine.succeed("(coredumpctl --json=short 2>&1 || true) | grep 'No coredumps found'") 69 72 machine.sleep(10) 70 73 machine.screenshot("screen") 71 74 '';