Lines Matching refs:u
119 xGlobalSocket.u.xTCP.eTCPState = eESTABLISHED; in xStubForEventGroupWaitBits()
274 …loc_ExpectAndReturn( ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ),… in test_FreeRTOS_socket_NoMemory()
289 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ) ]; in test_FreeRTOS_socket_EventGroupCreationFailed()
296 …loc_ExpectAndReturn( ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ),… in test_FreeRTOS_socket_EventGroupCreationFailed()
315 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ) ]; in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
325 …loc_ExpectAndReturn( ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ),… in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
345 TEST_ASSERT_EQUAL( xSocket->u.xTCP.usMSS, ( uint16_t ) ipconfigTCP_MSS ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
346 TEST_ASSERT_EQUAL( xSocket->u.xTCP.uxRxStreamSize, ( size_t ) ipconfigTCP_RX_BUFFER_LENGTH ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
347 TEST_ASSERT_EQUAL( xSocket->u.xTCP.uxTxStreamSize, 0xAABB ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
348 TEST_ASSERT_EQUAL( 0x1234, pxSocket->u.xTCP.uxRxWinSize ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
349 TEST_ASSERT_EQUAL( 0x3456, pxSocket->u.xTCP.uxTxWinSize ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
360 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ) ]; in test_FreeRTOS_socket_TCPSocket()
370 …loc_ExpectAndReturn( ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ),… in test_FreeRTOS_socket_TCPSocket()
390 TEST_ASSERT_EQUAL( xSocket->u.xTCP.usMSS, ( uint16_t ) ipconfigTCP_MSS ); in test_FreeRTOS_socket_TCPSocket()
391 TEST_ASSERT_EQUAL( xSocket->u.xTCP.uxRxStreamSize, ( size_t ) ipconfigTCP_RX_BUFFER_LENGTH ); in test_FreeRTOS_socket_TCPSocket()
392 TEST_ASSERT_EQUAL( xSocket->u.xTCP.uxTxStreamSize, 0xAABB ); in test_FreeRTOS_socket_TCPSocket()
393 TEST_ASSERT_EQUAL( 0x1234, pxSocket->u.xTCP.uxRxWinSize ); in test_FreeRTOS_socket_TCPSocket()
394 TEST_ASSERT_EQUAL( 0x3456, pxSocket->u.xTCP.uxTxWinSize ); in test_FreeRTOS_socket_TCPSocket()
405 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ) ]; in test_FreeRTOS_socket_UDPSocket()
415 …loc_ExpectAndReturn( ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ),… in test_FreeRTOS_socket_UDPSocket()
419 vListInitialise_Expect( &( pxSocket->u.xUDP.xWaitingPacketsList ) ); in test_FreeRTOS_socket_UDPSocket()
433 TEST_ASSERT_EQUAL( xSocket->u.xUDP.uxMaxPackets, ( UBaseType_t ) ipconfigUDP_MAX_RX_PACKETS ); in test_FreeRTOS_socket_UDPSocket()
444 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ) ]; in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
454 …loc_ExpectAndReturn( ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ),… in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
458 vListInitialise_Expect( &( pxSocket->u.xUDP.xWaitingPacketsList ) ); in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
472 TEST_ASSERT_EQUAL( xSocket->u.xUDP.uxMaxPackets, ( UBaseType_t ) ipconfigUDP_MAX_RX_PACKETS ); in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
1065 TEST_ASSERT_EQUAL( NULL, xSocket.u.xTCP.pxHandleConnected ); in test_FreeRTOS_closesocket_TCPSocketSendFail()
1066 TEST_ASSERT_EQUAL( NULL, xSocket.u.xTCP.pxHandleReceive ); in test_FreeRTOS_closesocket_TCPSocketSendFail()
1067 TEST_ASSERT_EQUAL( NULL, xSocket.u.xTCP.pxHandleSent ); in test_FreeRTOS_closesocket_TCPSocketSendFail()
1088 TEST_ASSERT_EQUAL( NULL, xSocket.u.xTCP.pxHandleConnected ); in test_FreeRTOS_closesocket_TCPSocketSendPass()
1089 TEST_ASSERT_EQUAL( NULL, xSocket.u.xTCP.pxHandleReceive ); in test_FreeRTOS_closesocket_TCPSocketSendPass()
1090 TEST_ASSERT_EQUAL( NULL, xSocket.u.xTCP.pxHandleSent ); in test_FreeRTOS_closesocket_TCPSocketSendPass()
1111 TEST_ASSERT_EQUAL( NULL, xSocket.u.xUDP.pxHandleReceive ); in test_FreeRTOS_closesocket_UDPSocketSendFail()
1112 TEST_ASSERT_EQUAL( NULL, xSocket.u.xUDP.pxHandleSent ); in test_FreeRTOS_closesocket_UDPSocketSendFail()
1133 TEST_ASSERT_EQUAL( NULL, xSocket.u.xUDP.pxHandleReceive ); in test_FreeRTOS_closesocket_UDPSocketSendPass()
1134 TEST_ASSERT_EQUAL( NULL, xSocket.u.xUDP.pxHandleSent ); in test_FreeRTOS_closesocket_UDPSocketSendPass()
1289 TEST_ASSERT_EQUAL( 100, xSocket.u.xUDP.uxMaxPackets ); in test_FreeRTOS_setsockopt_UDPMaxRxPackets()
1311 TEST_ASSERT_EQUAL( 0, xSocket.u.xUDP.uxMaxPackets ); in test_FreeRTOS_setsockopt_UDPMaxRxPacketsNonUDPSock()
1401 TEST_ASSERT_EQUAL( 0x123ABD, xSocket.u.xTCP.pxHandleConnected ); in test_FreeRTOS_setsockopt_TCPConnSuccess()
1446 TEST_ASSERT_EQUAL( 0x123ABD, xSocket.u.xTCP.pxHandleReceive ); in test_FreeRTOS_setsockopt_TCPRecvSuccess()
1491 TEST_ASSERT_EQUAL( 0x123ABD, xSocket.u.xTCP.pxHandleSent ); in test_FreeRTOS_setsockopt_TCPSendSuccess()
1536 TEST_ASSERT_EQUAL( 0x123ABD, xSocket.u.xUDP.pxHandleReceive ); in test_FreeRTOS_setsockopt_UDPRecvSuccess()
1581 TEST_ASSERT_EQUAL( 0x123ABD, xSocket.u.xUDP.pxHandleSent ); in test_FreeRTOS_setsockopt_UDPSendSuccess()
1711 xSocket.u.xTCP.uxRxStreamSize = vOptionValue.uxEnoughSpace - 0x12; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues3()
1736 xSocket.u.xTCP.uxRxStreamSize = vOptionValue.uxEnoughSpace + 0x12; in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1741 TEST_ASSERT_EQUAL( vOptionValue.uxLittleSpace, xSocket.u.xTCP.uxLittleSpace ); in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1742 TEST_ASSERT_EQUAL( vOptionValue.uxEnoughSpace, xSocket.u.xTCP.uxEnoughSpace ); in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1760 xSocket.u.xTCP.txStream = NULL; in test_FreeRTOS_setsockopt_SendBuff()
1761 xSocket.u.xTCP.usMSS = 0x12; in test_FreeRTOS_setsockopt_SendBuff()
1763 FreeRTOS_round_up_ExpectAndReturn( vOptionValue, xSocket.u.xTCP.usMSS, 0xAB ); in test_FreeRTOS_setsockopt_SendBuff()
1768 TEST_ASSERT_EQUAL( 0xAB, xSocket.u.xTCP.uxTxStreamSize ); in test_FreeRTOS_setsockopt_SendBuff()
1786 xSocket.u.xTCP.rxStream = NULL; in test_FreeRTOS_setsockopt_RecvBuff()
1791 TEST_ASSERT_EQUAL( vOptionValue, xSocket.u.xTCP.uxRxStreamSize ); in test_FreeRTOS_setsockopt_RecvBuff()
1830 xSocket.u.xTCP.txStream = 0x1234; in test_FreeRTOS_setsockopt_WinPropsInvalidTxStream()
1854 xSocket.u.xTCP.rxStream = 0x1234; in test_FreeRTOS_setsockopt_WinPropsInvalidRxStream()
1855 xSocket.u.xTCP.usMSS = 0x12; in test_FreeRTOS_setsockopt_WinPropsInvalidRxStream()
1857 FreeRTOS_round_up_ExpectAndReturn( vOptionValue.lTxBufSize, xSocket.u.xTCP.usMSS, 0xAB ); in test_FreeRTOS_setsockopt_WinPropsInvalidRxStream()
1882 xSocket.u.xTCP.usMSS = 0x12; in test_FreeRTOS_setsockopt_WinPropsTCPWinNotInit()
1883 xSocket.u.xTCP.xTCPWindow.u.bits.bHasInit = pdFALSE; in test_FreeRTOS_setsockopt_WinPropsTCPWinNotInit()
1885 FreeRTOS_round_up_ExpectAndReturn( vOptionValue.lTxBufSize, xSocket.u.xTCP.usMSS, 0xAB ); in test_FreeRTOS_setsockopt_WinPropsTCPWinNotInit()
1890 TEST_ASSERT_EQUAL( ( uint32_t ) vOptionValue.lTxWinSize, xSocket.u.xTCP.uxRxWinSize ); in test_FreeRTOS_setsockopt_WinPropsTCPWinNotInit()
1891 TEST_ASSERT_EQUAL( ( uint32_t ) vOptionValue.lTxWinSize, xSocket.u.xTCP.uxTxWinSize ); in test_FreeRTOS_setsockopt_WinPropsTCPWinNotInit()
1912 xSocket.u.xTCP.usMSS = 0x12; in test_FreeRTOS_setsockopt_WinPropsTCPWinInit()
1913 xSocket.u.xTCP.xTCPWindow.u.bits.bHasInit = pdTRUE; in test_FreeRTOS_setsockopt_WinPropsTCPWinInit()
1915 FreeRTOS_round_up_ExpectAndReturn( vOptionValue.lTxBufSize, xSocket.u.xTCP.usMSS, 0xAB ); in test_FreeRTOS_setsockopt_WinPropsTCPWinInit()
1920 TEST_ASSERT_EQUAL( ( uint32_t ) vOptionValue.lRxWinSize, xSocket.u.xTCP.uxRxWinSize ); in test_FreeRTOS_setsockopt_WinPropsTCPWinInit()
1921 TEST_ASSERT_EQUAL( ( uint32_t ) vOptionValue.lTxWinSize, xSocket.u.xTCP.uxTxWinSize ); in test_FreeRTOS_setsockopt_WinPropsTCPWinInit()
1922 …_EQUAL_UINT32( ( ( uint32_t ) vOptionValue.lRxWinSize * xSocket.u.xTCP.usMSS ), xSocket.u.xTCP.xTC… in test_FreeRTOS_setsockopt_WinPropsTCPWinInit()
1923 …_EQUAL_UINT32( ( ( uint32_t ) vOptionValue.lTxWinSize * xSocket.u.xTCP.usMSS ), xSocket.u.xTCP.xTC… in test_FreeRTOS_setsockopt_WinPropsTCPWinInit()
1967 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.bits.bReuseSocket ); in test_FreeRTOS_setsockopt_ReUseListenSock_Set()
1985 xSocket.u.xTCP.bits.bReuseSocket = pdTRUE; in test_FreeRTOS_setsockopt_ReUseListenSock_Reset()
1990 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.bits.bReuseSocket ); in test_FreeRTOS_setsockopt_ReUseListenSock_Reset()
2033 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.bits.bCloseAfterSend ); in test_FreeRTOS_setsockopt_SockClose_Set()
2051 xSocket.u.xTCP.bits.bReuseSocket = pdTRUE; in test_FreeRTOS_setsockopt_SockClose_Reset()
2056 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.bits.bCloseAfterSend ); in test_FreeRTOS_setsockopt_SockClose_Reset()
2099 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.xTCPWindow.u.bits.bSendFullSize ); in test_FreeRTOS_setsockopt_SetFullSize_Set()
2117 xSocket.u.xTCP.bits.bReuseSocket = pdTRUE; in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateIncorrect()
2118 xSocket.u.xTCP.eTCPState = eESTABLISHED - 1; in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateIncorrect()
2123 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.xTCPWindow.u.bits.bSendFullSize ); in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateIncorrect()
2124 TEST_ASSERT_EQUAL( 0, xSocket.u.xTCP.usTimeout ); in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateIncorrect()
2142 xSocket.u.xTCP.bits.bReuseSocket = pdTRUE; in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateCorrect()
2143 xSocket.u.xTCP.eTCPState = eESTABLISHED; in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateCorrect()
2148 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.xTCPWindow.u.bits.bSendFullSize ); in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateCorrect()
2149 TEST_ASSERT_EQUAL( 0, xSocket.u.xTCP.usTimeout ); in test_FreeRTOS_setsockopt_SetFullSize_Reset_StateCorrect()
2167 xSocket.u.xTCP.bits.bReuseSocket = pdTRUE; in test_FreeRTOS_setsockopt_SetFullSize_Reset_HappyPath()
2168 xSocket.u.xTCP.eTCPState = eESTABLISHED; in test_FreeRTOS_setsockopt_SetFullSize_Reset_HappyPath()
2169 xSocket.u.xTCP.txStream = ( uintptr_t ) 0xABCD; in test_FreeRTOS_setsockopt_SetFullSize_Reset_HappyPath()
2171 uxStreamBufferGetSize_ExpectAndReturn( xSocket.u.xTCP.txStream, 0x123 ); in test_FreeRTOS_setsockopt_SetFullSize_Reset_HappyPath()
2177 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.xTCPWindow.u.bits.bSendFullSize ); in test_FreeRTOS_setsockopt_SetFullSize_Reset_HappyPath()
2178 TEST_ASSERT_EQUAL( 1, xSocket.u.xTCP.usTimeout ); in test_FreeRTOS_setsockopt_SetFullSize_Reset_HappyPath()
2200 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.bits.bWinChange ); in test_FreeRTOS_setsockopt_StopRx_InvalidProtocol()
2201 TEST_ASSERT_EQUAL( 0, xSocket.u.xTCP.usTimeout ); in test_FreeRTOS_setsockopt_StopRx_InvalidProtocol()
2225 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.bits.bRxStopped ); in test_FreeRTOS_setsockopt_StopRx_Set()
2226 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.bits.bWinChange ); in test_FreeRTOS_setsockopt_StopRx_Set()
2227 TEST_ASSERT_EQUAL( 1, xSocket.u.xTCP.usTimeout ); in test_FreeRTOS_setsockopt_StopRx_Set()
2245 xSocket.u.xTCP.bits.bReuseSocket = pdTRUE; in test_FreeRTOS_setsockopt_StopRx_Reset()
2252 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.bits.bRxStopped ); in test_FreeRTOS_setsockopt_StopRx_Reset()
2253 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.bits.bWinChange ); in test_FreeRTOS_setsockopt_StopRx_Reset()
2254 TEST_ASSERT_EQUAL( 1, xSocket.u.xTCP.usTimeout ); in test_FreeRTOS_setsockopt_StopRx_Reset()
2836 xSocket.u.xTCP.ulRemoteIP = 0xABCDEF12; in test_FreeRTOS_GetRemoteAddress_HappyPath()
2837 xSocket.u.xTCP.usRemotePort = 0x1234; in test_FreeRTOS_GetRemoteAddress_HappyPath()
2862 xSocket.u.xTCP.eTCPState = eTCP_LISTEN; /* eCONNECT_SYN - 1 */ in test_FreeRTOS_maywrite_InvalidValues()
2866 xSocket.u.xTCP.eTCPState = eFIN_WAIT_1; /* eESTABLISHED + 1 */ in test_FreeRTOS_maywrite_InvalidValues()
2870 xSocket.u.xTCP.eTCPState = eCONNECT_SYN; in test_FreeRTOS_maywrite_InvalidValues()
2874 xSocket.u.xTCP.eTCPState = eSYN_FIRST; /* eCONNECT_SYN + 1 */ in test_FreeRTOS_maywrite_InvalidValues()
2879 xSocket.u.xTCP.eTCPState = eESTABLISHED; in test_FreeRTOS_maywrite_InvalidValues()
2880 xSocket.u.xTCP.uxTxStreamSize = 0x123; in test_FreeRTOS_maywrite_InvalidValues()
2897 xSocket.u.xTCP.eTCPState = eESTABLISHED; in test_FreeRTOS_maywrite_HappyPath()
2898 xSocket.u.xTCP.txStream = ucStream; in test_FreeRTOS_maywrite_HappyPath()
2949 xSocket2.u.xTCP.eTCPState = eTCP_LISTEN; in test_vTCPNetStat_IPStackInit()
3003 listCURRENT_LIST_LENGTH_ExpectAndReturn( &( xSocket3.u.xUDP.xWaitingPacketsList ), 0 ); in test_vSocketSelect_UDPSocketsOnly()
3010 listCURRENT_LIST_LENGTH_ExpectAndReturn( &( xSocket4.u.xUDP.xWaitingPacketsList ), 3 ); in test_vSocketSelect_UDPSocketsOnly()
3071 xSocket[ 3 ].u.xTCP.bits.bPassAccept = pdTRUE; in test_vSocketSelect_TCPSocketsOnly()
3072 xSocket[ 3 ].u.xTCP.eTCPState = eTCP_LISTEN; in test_vSocketSelect_TCPSocketsOnly()
3073 xSocket[ 3 ].u.xTCP.pxPeerSocket = &xPeerSocket; in test_vSocketSelect_TCPSocketsOnly()
3074 xSocket[ 3 ].u.xTCP.bits.bConnPrepared = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3080 xSocket[ 4 ].u.xTCP.bits.bPassAccept = pdTRUE; in test_vSocketSelect_TCPSocketsOnly()
3081 xSocket[ 4 ].u.xTCP.eTCPState = eTCP_LISTEN; in test_vSocketSelect_TCPSocketsOnly()
3082 xSocket[ 4 ].u.xTCP.pxPeerSocket = &xPeerSocket1; in test_vSocketSelect_TCPSocketsOnly()
3083 xSocket[ 4 ].u.xTCP.pxPeerSocket->u.xTCP.bits.bPassAccept = pdTRUE; in test_vSocketSelect_TCPSocketsOnly()
3084 xSocket[ 4 ].u.xTCP.bits.bConnPrepared = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3090 xSocket[ 5 ].u.xTCP.eTCPState = eTCP_LISTEN; in test_vSocketSelect_TCPSocketsOnly()
3091 xSocket[ 5 ].u.xTCP.bits.bConnPrepared = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3092 xSocket[ 5 ].u.xTCP.txStream = ucStream; in test_vSocketSelect_TCPSocketsOnly()
3099 xSocket[ 6 ].u.xTCP.eTCPState = eCLOSE_WAIT; in test_vSocketSelect_TCPSocketsOnly()
3100 xSocket[ 6 ].u.xTCP.bits.bConnPrepared = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3101 xSocket[ 6 ].u.xTCP.txStream = ucStream; in test_vSocketSelect_TCPSocketsOnly()
3102 xSocket[ 6 ].u.xTCP.rxStream = ucStream; in test_vSocketSelect_TCPSocketsOnly()
3110 xSocket[ 7 ].u.xTCP.eTCPState = eESTABLISHED; in test_vSocketSelect_TCPSocketsOnly()
3111 xSocket[ 7 ].u.xTCP.bits.bConnPrepared = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3112 xSocket[ 7 ].u.xTCP.bits.bPassQueued = pdTRUE; in test_vSocketSelect_TCPSocketsOnly()
3113 xSocket[ 7 ].u.xTCP.bits.bReuseSocket = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3119 xSocket[ 8 ].u.xTCP.eTCPState = eESTABLISHED; in test_vSocketSelect_TCPSocketsOnly()
3120 xSocket[ 8 ].u.xTCP.bits.bConnPrepared = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3121 xSocket[ 8 ].u.xTCP.bits.bPassQueued = pdTRUE; in test_vSocketSelect_TCPSocketsOnly()
3122 xSocket[ 8 ].u.xTCP.bits.bReuseSocket = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3123 xSocket[ 8 ].u.xTCP.bits.bPassAccept = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3124 xSocket[ 8 ].u.xTCP.bits.bConnPassed = pdTRUE_UNSIGNED; in test_vSocketSelect_TCPSocketsOnly()
3140 TEST_ASSERT_EQUAL( pdFALSE, xSocket[ 2 ].u.xTCP.bits.bConnPassed ); in test_vSocketSelect_TCPSocketsOnly()