Print a list of test failures in the test summary. Issue #428

This commit is contained in:
Brian Anderson 2011-07-21 22:26:53 -07:00
parent b9b674abe7
commit e891e0b992
1 changed files with 10 additions and 0 deletions

View File

@ -107,6 +107,8 @@ fn run_tests(&test_opts opts, &test_desc[] tests) -> bool {
auto failed = 0u;
auto ignored = 0u;
auto failures = ~[];
for (test_desc test in filtered_tests) {
out.write_str(#fmt("running %s ... ", test.name));
alt (run_test(test)) {
@ -119,6 +121,7 @@ fn run_tests(&test_opts opts, &test_desc[] tests) -> bool {
failed += 1u;
write_failed(out);
out.write_line("");
failures += ~[test];
}
tr_ignored {
ignored += 1u;
@ -131,6 +134,13 @@ fn run_tests(&test_opts opts, &test_desc[] tests) -> bool {
assert passed + failed + ignored == total;
auto success = failed == 0u;
if (!success) {
out.write_line("\nfailures:");
for (test_desc test in failures) {
out.write_line(#fmt(" %s", test.name));
}
}
out.write_str(#fmt("\nresult: "));
if (success) {
write_ok(out);