wbemprox/tests: Use todo_wine_if() in tests.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
André Hentschel 2016-02-19 23:12:13 +01:00 committed by Alexandre Julliard
parent 68b92d052a
commit fa7d4e6015
1 changed files with 1 additions and 4 deletions

View File

@ -168,10 +168,7 @@ static void test_IWbemLocator(void)
{
resource = SysAllocString( test[i].path );
hr = IWbemLocator_ConnectServer( locator, resource, NULL, NULL, NULL, 0, NULL, NULL, &services );
if (test[i].todo) todo_wine
ok( hr == test[i].result || broken(hr == test[i].result_broken),
"%u: expected %08x got %08x\n", i, test[i].result, hr );
else
todo_wine_if (test[i].todo)
ok( hr == test[i].result || broken(hr == test[i].result_broken),
"%u: expected %08x got %08x\n", i, test[i].result, hr );
SysFreeString( resource );