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

test: fix tap output check

Only report as an error when status != 0.

Stops the platform_output test from being reported as having failed
on Jenkins.

This is a back-port of commit 1821bba from the master branch.
This commit is contained in:
Ben Noordhuis 2013-02-27 22:19:20 +01:00
parent b0c5e62035
commit 99065bb235

View File

@ -217,7 +217,7 @@ out:
/* Show error and output from processes if the test failed. */
if (status != 0 || task->show_output) {
if (tap_output) {
if (tap_output && status != 0) {
LOGF("not ok %d - %s\n#", test_count, test);
} else if (status != 0) {
LOGF("\n`%s` failed: %s\n", test, errmsg);