From e64cf4eeac7e55b40de8eadfb8493fbf3f311378 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Wed, 5 May 2021 17:42:45 +0900 Subject: [PATCH] test(compile): show command output to testing log for debugging purpose (#10503) --- cli/tests/integration_tests.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index f2d1c17707..f19966fdff 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -5409,7 +5409,9 @@ console.log("finish"); .arg("--target") .arg("x86_64-unknown-linux-gnu") .arg("./test_util/std/examples/welcome.ts") - .stdout(std::process::Stdio::piped()) + // TODO(kt3k): Prints command output to the test log for debugging purpose. + // Uncomment this line when this test become stable. + //.stdout(std::process::Stdio::piped()) .spawn() .unwrap() .wait_with_output()