Commit 644f5767 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

setupapi/tests: Fix remaining failures on Win9x.

parent 71318320
......@@ -589,6 +589,12 @@ static void test_SetupGetIntField(void)
retb = SetupGetIntField( &context, keys[i].index, &intfield );
if ( keys[i].err == ERROR_SUCCESS )
{
if ( !retb && !lstrcmpA( keys[i].key, "123=" ) )
{
win_skip( "results differ on Win9x\n" );
SetupCloseInfFile( hinf );
continue;
}
ok( retb, "%u: Expected success\n", i );
ok( GetLastError() == ERROR_SUCCESS ||
GetLastError() == 0xdeadbeef /* win9x, NT4 */,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment