From c9e1475085ec722c4398f23482c4fed1e34cac62 Mon Sep 17 00:00:00 2001 From: Jamie McClymont Date: Fri, 18 Mar 2022 20:14:24 +1300 Subject: [PATCH] nixos/tests/terminal-emulators: fix test for st some change in the last 24 hours altered the behaviour of st such that it now dies with a non-zero exit code when the shell exits, so kill is now necessary --- nixos/tests/terminal-emulators.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/terminal-emulators.nix b/nixos/tests/terminal-emulators.nix index a762b7b68db5..60161b80b965 100644 --- a/nixos/tests/terminal-emulators.nix +++ b/nixos/tests/terminal-emulators.nix @@ -77,6 +77,7 @@ let tests = { sakura.pkg = p: p.sakura; st.pkg = p: p.st; + st.kill = true; stupidterm.pkg = p: p.stupidterm; stupidterm.cmd = "stupidterm -- $command";