Commit 69ee0ad1 authored by Alexandre Julliard's avatar Alexandre Julliard

tests: The ok() macro shouldn't return a value.

parent fbbac38e
...@@ -88,21 +88,21 @@ extern void winetest_vskip( const char *msg, va_list ap ); ...@@ -88,21 +88,21 @@ extern void winetest_vskip( const char *msg, va_list ap );
#ifdef __GNUC__ #ifdef __GNUC__
extern int winetest_ok( int condition, const char *msg, ... ) __attribute__((format (printf,2,3) )); extern void winetest_ok( int condition, const char *msg, ... ) __attribute__((format (printf,2,3) ));
extern void winetest_skip( const char *msg, ... ) __attribute__((format (printf,1,2))); extern void winetest_skip( const char *msg, ... ) __attribute__((format (printf,1,2)));
extern void winetest_win_skip( const char *msg, ... ) __attribute__((format (printf,1,2))); extern void winetest_win_skip( const char *msg, ... ) __attribute__((format (printf,1,2)));
extern void winetest_trace( const char *msg, ... ) __attribute__((format (printf,1,2))); extern void winetest_trace( const char *msg, ... ) __attribute__((format (printf,1,2)));
#else /* __GNUC__ */ #else /* __GNUC__ */
extern int winetest_ok( int condition, const char *msg, ... ); extern void winetest_ok( int condition, const char *msg, ... );
extern void winetest_skip( const char *msg, ... ); extern void winetest_skip( const char *msg, ... );
extern void winetest_win_skip( const char *msg, ... ); extern void winetest_win_skip( const char *msg, ... );
extern void winetest_trace( const char *msg, ... ); extern void winetest_trace( const char *msg, ... );
#endif /* __GNUC__ */ #endif /* __GNUC__ */
#define ok_(file, line) (winetest_set_location(file, line), 0) ? 0 : winetest_ok #define ok_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_ok
#define skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_skip #define skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_skip
#define win_skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_win_skip #define win_skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_win_skip
#define trace_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_trace #define trace_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_trace
...@@ -330,15 +330,13 @@ int winetest_vok( int condition, const char *msg, va_list args ) ...@@ -330,15 +330,13 @@ int winetest_vok( int condition, const char *msg, va_list args )
} }
} }
int winetest_ok( int condition, const char *msg, ... ) void winetest_ok( int condition, const char *msg, ... )
{ {
va_list valist; va_list valist;
int rc;
va_start(valist, msg); va_start(valist, msg);
rc=winetest_vok(condition, msg, valist); winetest_vok(condition, msg, valist);
va_end(valist); va_end(valist);
return rc;
} }
void winetest_trace( const char *msg, ... ) void winetest_trace( const char *msg, ... )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment