Don't redirect output in rustpkg test

Previously, if tests failed, you'd only get stderr which isn't very
useful, especially if the failure didn't happen directly in a test
function (e.g None.unwrap()).
This commit is contained in:
Steven Fackler 2013-09-28 22:03:54 -07:00
parent 92e7bb67a8
commit c685e0879c
1 changed files with 2 additions and 8 deletions

View File

@ -620,14 +620,8 @@ impl CtxMethods for BuildContext {
match built_test_in_workspace(pkgid, workspace) {
Some(test_exec) => {
debug!("test: test_exec = %s", test_exec.to_str());
let p_output = run::process_output(test_exec.to_str(), [~"--test"]);
if p_output.status == 0 {
println(str::from_utf8(p_output.output));
}
else {
println(str::from_utf8(p_output.error));
}
os::set_exit_status(p_output.status);
let status = run::process_status(test_exec.to_str(), [~"--test"]);
os::set_exit_status(status);
}
None => {
error(fmt!("Internal error: test executable for package ID %s in workspace %s \