Author: akhaldi Date: Sun Sep 18 16:20:20 2016 New Revision: 72728
URL: http://svn.reactos.org/svn/reactos?rev=72728&view=rev Log: [WS2_32_WINETEST] Disable test_address_list_query() as the ioctl is not supported yet by winsock helper dll (wshtcpip.dll) and the test is assuming there is info returned which is wrong and crashes. By Peter Hater. CORE-10440 CORE-12000
Modified: trunk/rostests/winetests/ws2_32/sock.c
Modified: trunk/rostests/winetests/ws2_32/sock.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ws2_32/sock.c?re... ============================================================================== --- trunk/rostests/winetests/ws2_32/sock.c [iso-8859-1] (original) +++ trunk/rostests/winetests/ws2_32/sock.c [iso-8859-1] Sun Sep 18 16:20:20 2016 @@ -9287,6 +9287,8 @@ CloseHandle(previous_port); }
+#if CORE_12000_IS_FIXED /* CORE-12000 */ +/* WSHIoctl is not supported by wshtcpip.dll and crashes. Test should be fixed also! */ static void test_address_list_query(void) { SOCKET_ADDRESS_LIST *address_list; @@ -9349,6 +9351,7 @@ HeapFree(GetProcessHeap(), 0, address_list); closesocket(s); } +#endif /* CORE-12000 */
static DWORD WINAPI inet_ntoa_thread_proc(void *param) { @@ -9807,7 +9810,9 @@ test_WSAAsyncGetServByName();
test_completion_port(); +#if CORE_12000_IS_FIXED /* FIXME: CORE-12000 */ test_address_list_query(); +#endif
/* this is an io heavy test, do it at the end so the kernel doesn't start dropping packets */ test_send();