From facef799d305bced7d893f05594bbf98e3ae5038 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Mon, 4 Mar 2024 20:59:11 -0800 Subject: [PATCH] it: Don't capture stdout Signed-off-by: John Nunley --- it/gui-test-runner/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/it/gui-test-runner/src/main.rs b/it/gui-test-runner/src/main.rs index 48cdb199f..a2cba1b92 100644 --- a/it/gui-test-runner/src/main.rs +++ b/it/gui-test-runner/src/main.rs @@ -30,9 +30,8 @@ fn main() { // Just run the crate. if !Command::new("cargo") .args(["run", "-p", &test_crate]) - .output() + .status() .unwrap() - .status .success() { panic!("test failed");