mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 21:48:19 +00:00
sync iphlpapi_winetest with wine 1.1.12
svn path=/trunk/; revision=38555
This commit is contained in:
parent
02a42aaf0d
commit
64915ab8ed
1 changed files with 2 additions and 1 deletions
|
@ -322,7 +322,8 @@ static void testGetIpNetTable(void)
|
||||||
PMIB_IPNETTABLE buf = HeapAlloc(GetProcessHeap(), 0, dwSize);
|
PMIB_IPNETTABLE buf = HeapAlloc(GetProcessHeap(), 0, dwSize);
|
||||||
|
|
||||||
apiReturn = gGetIpNetTable(buf, &dwSize, FALSE);
|
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",
|
"GetIpNetTable(buf, &dwSize, FALSE) returned %d, expected NO_ERROR\n",
|
||||||
apiReturn);
|
apiReturn);
|
||||||
HeapFree(GetProcessHeap(), 0, buf);
|
HeapFree(GetProcessHeap(), 0, buf);
|
||||||
|
|
Loading…
Reference in a new issue