tests: Restore the colon in the todo, skip and trace lines.

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Francois Gouget 2020-02-12 03:16:48 +01:00 committed by Alexandre Julliard
parent 61d0cc78b2
commit 98e50f9ead
1 changed files with 3 additions and 3 deletions

View File

@ -346,7 +346,7 @@ int winetest_vok( int condition, const char *msg, __winetest_va_list args )
{
if (winetest_debug > 0)
{
printf( "%s:%d Test marked todo: ",
printf( "%s:%d: Test marked todo: ",
data->current_file, data->current_line );
vprintf(msg, args);
}
@ -396,7 +396,7 @@ void __winetest_cdecl winetest_trace( const char *msg, ... )
if (winetest_add_line() < winetest_mute_threshold)
{
struct tls_data *data = get_tls_data();
printf( "%s:%d ", data->current_file, data->current_line );
printf( "%s:%d: ", data->current_file, data->current_line );
__winetest_va_start(valist, msg);
vprintf(msg, valist);
__winetest_va_end(valist);
@ -410,7 +410,7 @@ void winetest_vskip( const char *msg, __winetest_va_list args )
if (winetest_add_line() < winetest_mute_threshold)
{
struct tls_data *data = get_tls_data();
printf( "%s:%d Tests skipped: ", data->current_file, data->current_line );
printf( "%s:%d: Tests skipped: ", data->current_file, data->current_line );
vprintf(msg, args);
InterlockedIncrement(&skipped);
}