mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-11-03 08:24:18 +03:00
tests: Always put a '\n' after each debug print
There is an inconsistency with VIR_TEST_DEBUG() calls. One half (roughly) of calls does have the newline character the other one doesn't. Well, it doesn't have it because it assumed blindly that new line will be printed, which is not the case. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
@@ -64,7 +64,7 @@ testCompareStatusXMLToXMLFiles(const void *opaque)
|
||||
VIR_DOMAIN_DEF_PARSE_PCI_ORIG_STATES |
|
||||
VIR_DOMAIN_DEF_PARSE_SKIP_VALIDATE |
|
||||
VIR_DOMAIN_DEF_PARSE_ALLOW_POST_PARSE_FAIL))) {
|
||||
VIR_TEST_DEBUG("\nfailed to parse '%s'\n", data->infile);
|
||||
VIR_TEST_DEBUG("\nfailed to parse '%s'", data->infile);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ testCompareStatusXMLToXMLFiles(const void *opaque)
|
||||
VIR_DOMAIN_DEF_FORMAT_ACTUAL_NET |
|
||||
VIR_DOMAIN_DEF_FORMAT_PCI_ORIG_STATES |
|
||||
VIR_DOMAIN_DEF_FORMAT_CLOCK_ADJUST))) {
|
||||
VIR_TEST_DEBUG("\nfailed to format back '%s'\n", data->infile);
|
||||
VIR_TEST_DEBUG("\nfailed to format back '%s'", data->infile);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user