Generate the __ASM_NAME and __ASM_FUNC macros directly from
[wine] / include / wine / test.h
1 /*
2  * Definitions for Wine C unit tests.
3  *
4  * Copyright (C) 2002 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifndef __WINE_TEST_H
22 #define __WINE_TEST_H
23
24 #include <stdarg.h>
25 #include "windef.h"
26
27 /* debug level */
28 extern int winetest_debug;
29
30 /* current platform */
31 extern const char *winetest_platform;
32
33 extern void winetest_set_ok_location( const char* file, int line );
34 extern void winetest_set_trace_location( const char* file, int line );
35 extern void winetest_start_todo( const char* platform );
36 extern int winetest_loop_todo(void);
37 extern void winetest_end_todo( const char* platform );
38 extern int winetest_get_mainargs( char*** pargv );
39
40 #define START_TEST(name) void func_##name(void)
41
42 #ifdef __GNUC__
43
44 extern int winetest_ok( int condition, const char *msg, ... ) __attribute__((format (printf,2,3) ));
45 extern void winetest_trace( const char *msg, ... ) __attribute__((format (printf,1,2)));
46
47 #define ok(cond,args...) (winetest_set_ok_location(__FILE__, __LINE__), winetest_ok((cond),args))
48 #define trace(args...)   (winetest_set_trace_location(__FILE__, __LINE__), winetest_trace(args))
49
50 #else /* __GNUC__ */
51
52 extern int winetest_ok( int condition, const char *msg, ... );
53 extern void winetest_trace( const char *msg, ... );
54
55 #define ok     (winetest_set_ok_location(__FILE__, __LINE__), 0) ? 0 : winetest_ok
56 #define trace  (winetest_set_trace_location(__FILE__, __LINE__), 0) ? (void)0 : winetest_trace
57
58 #endif /* __GNUC__ */
59
60 #define todo(platform) for (winetest_start_todo(platform); \
61                             winetest_loop_todo(); \
62                             winetest_end_todo(platform))
63 #define todo_wine      todo("wine")
64
65 #endif  /* __WINE_TEST_H */