[WINE/TEST]

* Introduce a way to properly mark the todos instead of counting them as failures. Brought to you by Thomas Faber.

svn path=/trunk/; revision=60074
This commit is contained in:
Amine Khaldi 2013-09-13 09:20:52 +00:00
parent e6b9ab39f6
commit 2884eb4ffb
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,6 @@
@echo off
set WINETEST_DEBUG=0
set WINETEST_PLATFORM=reactos
if exist "C:\ReactOS\bin\AHKAppTests.cmd" (
dbgprint "Preparing AHK Application testing suite."

View file

@ -137,7 +137,13 @@ extern void __winetest_cdecl winetest_trace( const char *msg, ... );
#define todo(platform) for (winetest_start_todo(platform); \
winetest_loop_todo(); \
winetest_end_todo(platform))
#define todo_ros todo("reactos")
#ifdef USE_WINE_TODOS
#define todo_wine todo_ros
#else
#define todo_wine todo("wine")
#endif
#ifdef NONAMELESSUNION