mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06: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:
@@ -1004,7 +1004,7 @@ int virTestMain(int argc,
|
||||
fprintf(stderr, "Usage: %s\n", argv[0]);
|
||||
fputs("effective environment variables:\n"
|
||||
"VIR_TEST_VERBOSE set to show names of individual tests\n"
|
||||
"VIR_TEST_DEBUG set to show information for debugging failures\n",
|
||||
"VIR_TEST_DEBUG set to show information for debugging failures",
|
||||
stderr);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user