sync iphlpapi_winetest with wine 1.1.12

svn path=/trunk/; revision=38555
This commit is contained in:
Christoph von Wittich 2009-01-04 11:31:13 +00:00
parent 02a42aaf0d
commit 64915ab8ed

View file

@ -322,7 +322,8 @@ static void testGetIpNetTable(void)
PMIB_IPNETTABLE buf = HeapAlloc(GetProcessHeap(), 0, dwSize);
apiReturn = gGetIpNetTable(buf, &dwSize, FALSE);
ok(apiReturn == NO_ERROR,
ok(apiReturn == NO_ERROR ||
apiReturn == ERROR_NO_DATA, /* empty ARP table's okay */
"GetIpNetTable(buf, &dwSize, FALSE) returned %d, expected NO_ERROR\n",
apiReturn);
HeapFree(GetProcessHeap(), 0, buf);