Author: phater Date: Mon Oct 10 06:48:56 2016 New Revision: 72949
URL: http://svn.reactos.org/svn/reactos?rev=72949&view=rev Log: [WS2_32_APITESTS] Fix helper by not shutting down send. This way it breaks the test on windows also.
Modified: trunk/rostests/apitests/ws2_32/helpers.c
Modified: trunk/rostests/apitests/ws2_32/helpers.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/ws2_32/helpers.c?... ============================================================================== --- trunk/rostests/apitests/ws2_32/helpers.c [iso-8859-1] (original) +++ trunk/rostests/apitests/ws2_32/helpers.c [iso-8859-1] Mon Oct 10 06:48:56 2016 @@ -54,10 +54,10 @@ /* Send the GET request */ SCKTEST(send(sck, szGetRequest, strlen(szGetRequest), 0)); ok(iResult == strlen(szGetRequest), "iResult = %d\n", iResult); - +#if 0 /* breaks windows too */ /* Shutdown the SEND connection */ SCKTEST(shutdown(sck, SD_SEND)); - +#endif /* Wait until we're ready to read */ FD_ZERO(&readable); FD_SET(sck, &readable);