diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2021-05-05 17:42:45 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-05 17:42:45 +0900 |
commit | e64cf4eeac7e55b40de8eadfb8493fbf3f311378 (patch) | |
tree | ead7c0ef13a4924e8d152fb316cbbe318352bae7 /cli/tests/integration_tests.rs | |
parent | 49c4d57b0f5b0ed910d6ed18aec7ae621c407222 (diff) |
test(compile): show command output to testing log for debugging purpose (#10503)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 4 |
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() |