setupapi/tests: Fix remaining failures on Win9x.
This commit is contained in:
parent
713183200b
commit
644f57679b
|
@ -589,6 +589,12 @@ static void test_SetupGetIntField(void)
|
||||||
retb = SetupGetIntField( &context, keys[i].index, &intfield );
|
retb = SetupGetIntField( &context, keys[i].index, &intfield );
|
||||||
if ( keys[i].err == ERROR_SUCCESS )
|
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( retb, "%u: Expected success\n", i );
|
||||||
ok( GetLastError() == ERROR_SUCCESS ||
|
ok( GetLastError() == ERROR_SUCCESS ||
|
||||||
GetLastError() == 0xdeadbeef /* win9x, NT4 */,
|
GetLastError() == 0xdeadbeef /* win9x, NT4 */,
|
||||||
|
|
Loading…
Reference in New Issue