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

Alexandre Julliard julliard at winehq.org
Wed Feb 12 16:21:04 CST 2020


Module: wine
Branch: master
Commit: 98e50f9ead6fd0f9d3cddaed489074c375f49420
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=98e50f9ead6fd0f9d3cddaed489074c375f49420

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Wed Feb 12 03:16:48 2020 +0100

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

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/wine/test.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/wine/test.h b/include/wine/test.h
index 7a5606a1ec..3af3ffd2a9 100644
--- a/include/wine/test.h
+++ b/include/wine/test.h
@@ -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);
     }




More information about the wine-cvs mailing list