about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-12-07 17:26:48 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-12-07 17:27:58 -0800
commit03fb5ad7c25eda9582d8da215bc1697af8f2c2ff (patch)
treeb3df236e02c24d2acffddf296ef7e249730d3e29 /src/bootstrap
parent535b6d397f735ff72064462be38f733d2637cd6f (diff)
downloadrust-03fb5ad7c25eda9582d8da215bc1697af8f2c2ff.tar.gz
rust-03fb5ad7c25eda9582d8da215bc1697af8f2c2ff.zip
rustbuild: Print out failing commands
Just ensure that we always print out the command line which should aid in
debugging.

Closes #38228
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/check.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs
index c5675fd46cb..72e12c55bfc 100644
--- a/src/bootstrap/check.rs
+++ b/src/bootstrap/check.rs
@@ -464,8 +464,7 @@ fn krate_emscripten(build: &Build,
          println!("running {}", test_file_name);
          let nodejs = build.config.nodejs.as_ref().expect("nodejs not configured");
          let mut cmd = Command::new(nodejs);
-         cmd.arg(&test_file_name)
-            .stderr(::std::process::Stdio::inherit());
+         cmd.arg(&test_file_name);
          if build.config.quiet_tests {
              cmd.arg("--quiet");
          }