2 * Main routine for Wine C unit tests.
4 * Copyright 2002 Alexandre Julliard
5 * Copyright 2002 Andriy Palamarchuk
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "wine/test.h"
30 int winetest_debug
= 1;
32 /* current platform */
33 const char *winetest_platform
= "windows";
35 /* report successful tests (BOOL) */
36 int winetest_report_success
= 0;
38 /* passing arguments around */
39 static int winetest_argc
;
40 static char** winetest_argv
;
48 extern const struct test winetest_testlist
[];
49 static const struct test
*current_test
; /* test currently being run */
51 static LONG successes
; /* number of successful tests */
52 static LONG failures
; /* number of failures */
53 static LONG todo_successes
; /* number of successful tests inside todo block */
54 static LONG todo_failures
; /* number of failures inside todo block */
56 /* The following data must be kept track of on a per-thread basis */
59 const char* current_file
; /* file of current check */
60 int current_line
; /* line of current check */
61 int todo_level
; /* current todo nesting level */
64 static DWORD tls_index
;
66 static tls_data
* get_tls_data(void)
71 last_error
=GetLastError();
72 data
=TlsGetValue(tls_index
);
75 data
=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(tls_data
));
76 TlsSetValue(tls_index
,data
);
78 SetLastError(last_error
);
82 static void exit_process( int code
)
92 * - condition - condition to check;
93 * - msg test description;
94 * - file - test application source code file name of the check
95 * - line - test application source code file line number of the check
97 * 0 if condition does not have the expected value, 1 otherwise
99 int winetest_ok( int condition
, const char *msg
, ... )
102 tls_data
* data
=get_tls_data();
104 if (data
->todo_level
)
108 fprintf( stderr
, "%s:%d: Test succeeded inside todo block",
109 data
->current_file
, data
->current_line
);
112 va_start(valist
, msg
);
113 fprintf(stderr
,": ");
114 vfprintf(stderr
, msg
, valist
);
117 fputc( '\n', stderr
);
118 InterlockedIncrement(&todo_failures
);
121 else InterlockedIncrement(&todo_successes
);
127 fprintf( stderr
, "%s:%d: Test failed",
128 data
->current_file
, data
->current_line
);
131 va_start(valist
, msg
);
132 fprintf( stderr
,": ");
133 vfprintf(stderr
, msg
, valist
);
136 fputc( '\n', stderr
);
137 InterlockedIncrement(&failures
);
142 if( winetest_report_success
)
143 fprintf( stderr
, "%s:%d: Test succeeded\n",
144 data
->current_file
, data
->current_line
);
145 InterlockedIncrement(&successes
);
151 void winetest_set_ok_location( const char* file
, int line
)
153 tls_data
* data
=get_tls_data();
154 data
->current_file
=file
;
155 data
->current_line
=line
;
158 void winetest_trace( const char *msg
, ... )
161 tls_data
* data
=get_tls_data();
163 if (winetest_debug
> 0)
165 fprintf( stderr
, "%s:%d:", data
->current_file
, data
->current_line
);
166 va_start(valist
, msg
);
167 vfprintf(stderr
, msg
, valist
);
172 void winetest_set_trace_location( const char* file
, int line
)
174 tls_data
* data
=get_tls_data();
175 data
->current_file
=file
;
176 data
->current_line
=line
;
179 void winetest_start_todo( const char* platform
)
181 tls_data
* data
=get_tls_data();
182 if (strcmp(winetest_platform
,platform
)==0)
184 data
->todo_do_loop
=1;
187 int winetest_loop_todo(void)
189 tls_data
* data
=get_tls_data();
190 int do_loop
=data
->todo_do_loop
;
191 data
->todo_do_loop
=0;
195 void winetest_end_todo( const char* platform
)
197 if (strcmp(winetest_platform
,platform
)==0)
199 tls_data
* data
=get_tls_data();
204 int winetest_get_mainargs( char*** pargv
)
206 *pargv
= winetest_argv
;
207 return winetest_argc
;
210 /* Find a test by name */
211 static const struct test
*find_test( const char *name
)
213 const struct test
*test
;
217 if ((p
= strrchr( name
, '/' ))) name
= p
+ 1;
218 if ((p
= strrchr( name
, '\\' ))) name
= p
+ 1;
220 if (len
> 2 && !strcmp( name
+ len
- 2, ".c" )) len
-= 2;
222 for (test
= winetest_testlist
; test
->name
; test
++)
224 if (!strncmp( test
->name
, name
, len
) && !test
->name
[len
]) break;
226 return test
->name
? test
: NULL
;
230 /* Run a named test, and return exit status */
231 static int run_test( const char *name
)
233 const struct test
*test
;
236 if (!(test
= find_test( name
)))
238 fprintf( stderr
, "Fatal: test '%s' does not exist.\n", name
);
241 successes
= failures
= todo_successes
= todo_failures
= 0;
242 tls_index
=TlsAlloc();
248 fprintf( stderr
, "%s: %ld tests executed, %ld marked as todo, %ld %s.\n",
249 name
, successes
+ failures
+ todo_successes
+ todo_failures
,
250 todo_successes
, failures
+ todo_failures
,
251 (failures
+ todo_failures
!= 1) ? "failures" : "failure" );
253 status
= (failures
+ todo_failures
< 255) ? failures
+ todo_failures
: 255;
258 /* Display usage and exit */
259 static void usage( const char *argv0
)
261 const struct test
*test
;
263 fprintf( stderr
, "Usage: %s test_name\n", argv0
);
264 fprintf( stderr
, "\nValid test names:\n" );
265 for (test
= winetest_testlist
; test
->name
; test
++) fprintf( stderr
, " %s\n", test
->name
);
271 int main( int argc
, char **argv
)
275 winetest_argc
= argc
;
276 winetest_argv
= argv
;
278 if ((p
= getenv( "WINETEST_PLATFORM" ))) winetest_platform
= p
;
279 if ((p
= getenv( "WINETEST_DEBUG" ))) winetest_debug
= atoi(p
);
280 if ((p
= getenv( "WINETEST_REPORT_SUCCESS"))) winetest_report_success
= \
282 if (!argv
[1]) usage( argv
[0] );
284 return run_test(argv
[1]);