inetmib1/tests: add missing broken()

Austin English austinenglish at gmail.com
Fri Feb 25 16:34:28 CST 2011


Was going to remove, but WTB shows it fails on NT4, so marking as
broken and updating comment instead.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/inetmib1/tests/main.c b/dlls/inetmib1/tests/main.c
index 03c9b62..80b3618 100644
--- a/dlls/inetmib1/tests/main.c
+++ b/dlls/inetmib1/tests/main.c
@@ -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)


More information about the wine-patches mailing list