1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-22 06:09:25 -05:00

test(compile): show command output to testing log for debugging purpose (#10503)

This commit is contained in:
Yoshiya Hinosawa 2021-05-05 17:42:45 +09:00 committed by GitHub
parent 49c4d57b0f
commit e64cf4eeac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()