From: Ján Tomko Date: Tue, 2 Apr 2019 14:07:01 +0000 (+0200) Subject: virjsontest: reword error messages in testJSONFromString X-Git-Tag: v5.3.0-rc1~274 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20783bbcfdfb4ce07d46db7ac3f0b4cd24dde950;p=thirdparty%2Flibvirt.git virjsontest: reword error messages in testJSONFromString Signed-off-by: Ján Tomko --- diff --git a/tests/virjsontest.c b/tests/virjsontest.c index 8481460e92..39ee30e6b5 100644 --- a/tests/virjsontest.c +++ b/tests/virjsontest.c @@ -29,16 +29,16 @@ testJSONFromString(const void *data) if (!json) { if (info->pass) { - VIR_TEST_VERBOSE("Fail to parse %s\n", info->doc); + VIR_TEST_VERBOSE("Failed to parse %s\n", info->doc); goto cleanup; } else { - VIR_TEST_DEBUG("Fail to parse %s\n", info->doc); + VIR_TEST_DEBUG("As expected, failed to parse %s\n", info->doc); ret = 0; goto cleanup; } } else { if (!info->pass) { - VIR_TEST_VERBOSE("Should not have parsed %s\n", info->name); + VIR_TEST_VERBOSE("Unexpected success while parsing %s\n", info->doc); goto cleanup; } }