ntoskrnl.exe/tests: Fix inverted winetest_win_skip condition.

And change skipped test message. It's not really useful and it will fail
the tests if the main test summary doesn't match the number of skipped
messages.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2021-09-13 10:48:59 +02:00 committed by Alexandre Julliard
parent 88a8e824e6
commit 757325bf77
1 changed files with 2 additions and 2 deletions

View File

@ -306,7 +306,7 @@ static inline void winetest_vskip( const char *msg, __ms_va_list args )
{ {
if (winetest_add_line() < winetest_mute_threshold) if (winetest_add_line() < winetest_mute_threshold)
{ {
winetest_print_context( "Tests skipped: " ); winetest_print_context( "Driver tests skipped: " );
kvprintf(msg, args); kvprintf(msg, args);
InterlockedIncrement(&skipped); InterlockedIncrement(&skipped);
} }
@ -328,7 +328,7 @@ static inline void WINAPIV winetest_win_skip( const char *msg, ... )
{ {
__ms_va_list args; __ms_va_list args;
__ms_va_start(args, msg); __ms_va_start(args, msg);
if (running_under_wine) if (!running_under_wine)
winetest_vskip(msg, args); winetest_vskip(msg, args);
else else
winetest_vok(0, msg, args); winetest_vok(0, msg, args);