summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2021-05-05 17:42:45 +0900
committerGitHub <noreply@github.com>2021-05-05 17:42:45 +0900
commite64cf4eeac7e55b40de8eadfb8493fbf3f311378 (patch)
treeead7c0ef13a4924e8d152fb316cbbe318352bae7
parent49c4d57b0f5b0ed910d6ed18aec7ae621c407222 (diff)
test(compile): show command output to testing log for debugging purpose (#10503)
-rw-r--r--cli/tests/integration_tests.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index f2d1c1770..f19966fdf 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()