inetmib1/tests: Add missing broken().
authorAustin English <austinenglish@gmail.com>
Fri, 25 Feb 2011 22:34:28 +0000 (14:34 -0800)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 28 Feb 2011 12:11:58 +0000 (13:11 +0100)
dlls/inetmib1/tests/main.c

index 03c9b62..80b3618 100644 (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)