mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[WINE/TEST]
* Make win_skip work for ReactOS test platform too. svn path=/trunk/; revision=60076
This commit is contained in:
parent
eb17ba28c4
commit
97ac51ad68
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ void __winetest_cdecl winetest_win_skip( const char *msg, ... )
|
|||
{
|
||||
__winetest_va_list valist;
|
||||
__winetest_va_start(valist, msg);
|
||||
if (strcmp(winetest_platform, "windows") == 0)
|
||||
if ((strcmp(winetest_platform, "windows") == 0) || (strcmp(winetest_platform, "reactos") == 0))
|
||||
winetest_vskip(msg, valist);
|
||||
else
|
||||
winetest_vok(0, msg, valist);
|
||||
|
|
Loading…
Reference in a new issue