Skip to content

Commit

Permalink
auto merge of #7439 : catamorphism/rust/cut-rustpkg-output, r=catamor…
Browse files Browse the repository at this point in the history
…phism

Closes #7250
  • Loading branch information
bors committed Jun 29, 2013
2 parents 4e78c1e + 3dfbc5a commit a229c98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/librustpkg/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ fn command_line_test(args: &[~str], cwd: &Path) -> ProcessOutput {
err_fd: None
});
let output = prog.finish_with_output();
io::println(fmt!("Output from command %s with args %? was %s {%s}[%?]",
debug!("Output from command %s with args %? was %s {%s}[%?]",
cmd, args, str::from_bytes(output.output),
str::from_bytes(output.error),
output.status));
output.status);
/*
By the way, rustpkg *won't* return a nonzero exit code if it fails --
see #4547
Expand Down
6 changes: 5 additions & 1 deletion src/librustpkg/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ pub fn compile_input(ctxt: &Ctx,
Lib => lib_crate,
Test | Bench | Main => bin_crate
};
let matches = getopts(~[~"-Z", ~"time-passes"]
let matches = getopts(debug_flags()
+ match what {
Lib => ~[~"--lib"],
// --test compiles both #[test] and #[bench] fns
Expand Down Expand Up @@ -415,3 +415,7 @@ mod test {
}

}

// tjc: cheesy
fn debug_flags() -> ~[~str] { ~[] }
// static debug_flags: ~[~str] = ~[~"-Z", ~"time-passes"];

0 comments on commit a229c98

Please sign in to comment.