mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-10-20 11:33:43 +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:
@@ -56,7 +56,7 @@ test_virResctrlGetUnused(const void *opaque)
|
||||
ret = 0;
|
||||
goto cleanup;
|
||||
} else if (data->fail) {
|
||||
VIR_TEST_DEBUG("Error expected but there wasn't any.\n");
|
||||
VIR_TEST_DEBUG("Error expected but there wasn't any.");
|
||||
ret = -1;
|
||||
goto cleanup;
|
||||
}
|
||||
|
Reference in New Issue
Block a user