inetmib1/tests: Add missing broken().

This commit is contained in:
Austin English 2011-02-25 14:34:28 -08:00 committed by Alexandre Julliard
parent 5cce62a8f4
commit ead0efbacd
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ static void testQuery(void)
ret = pQuery(SNMP_PDU_GET, &list, &error, &index);
ok(ret, "SnmpExtensionQuery failed: %d, %d\n", error, index);
ok(error == SNMP_ERRORSTATUS_NOERROR ||
error == ERROR_FILE_NOT_FOUND /* Win9x */,
broken(error == ERROR_FILE_NOT_FOUND) /* NT4 */,
"expected SNMP_ERRORSTATUS_NOERROR or ERROR_FILE_NOT_FOUND, got %d\n",
error);
if (error == SNMP_ERRORSTATUS_NOERROR)