1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: fix tap output even when ok but have output

This is a back-port of commit 49d2ae3 from the master branch.
This commit is contained in:
Timothy J Fontaine 2013-02-27 13:39:10 -08:00 committed by Ben Noordhuis
parent 99065bb235
commit 95577a8699

View File

@ -215,10 +215,17 @@ out:
FATAL("process_wait failed");
}
if (tap_output) {
if (status == 0)
LOGF("ok %d - %s\n", test_count, test);
else
LOGF("not ok %d - %s\n", test_count, test);
}
/* Show error and output from processes if the test failed. */
if (status != 0 || task->show_output) {
if (tap_output && status != 0) {
LOGF("not ok %d - %s\n#", test_count, test);
if (tap_output) {
LOGF("#");
} else if (status != 0) {
LOGF("\n`%s` failed: %s\n", test, errmsg);
} else {
@ -265,8 +272,6 @@ out:
}
break;
}
} else if (tap_output) {
LOGF("ok %d - %s\n", test_count, test);
}
/* Clean up all process handles. */