about summary refs log tree commit diff
path: root/nixos/tests/chromium.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2021-11-05 21:13:25 +0100
committerRobert Hensing <robert@roberthensing.nl>2021-11-05 21:13:25 +0100
commitedc67d3862c242b254e3eff0b61bd5cef989e4d1 (patch)
treeb3c744bdd9a2d368bc040d0bd5aeb5f1326ee5eb /nixos/tests/chromium.nix
parent6f6f476bd68225f7e6d079c0cb996363e91c282c (diff)
nixosTests.chromium: Redirect stdout to avoid blocking
Diffstat (limited to 'nixos/tests/chromium.nix')
-rw-r--r--nixos/tests/chromium.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix
index d67acd075a13f..1df4def66374f 100644
--- a/nixos/tests/chromium.nix
+++ b/nixos/tests/chromium.nix
@@ -86,7 +86,7 @@ mapAttrs (channel: chromiumPkg: makeTest rec {
             options.append("--use-gl=swiftshader")
         # Launch the process:
         options.append("file://${startupHTML}")
-        machine.succeed(ru(f'ulimit -c unlimited; {binary} {shlex.join(options)} & disown'))
+        machine.succeed(ru(f'ulimit -c unlimited; {binary} {shlex.join(options)} >&2 & disown'))
         if binary.startswith("google-chrome"):
             # Need to click away the first window:
             machine.wait_for_text("Make Google Chrome the default browser")