File tree Expand file tree Collapse file tree 4 files changed +8
-34
lines changed Expand file tree Collapse file tree 4 files changed +8
-34
lines changed Original file line number Diff line number Diff line change @@ -106,9 +106,7 @@ jobs:
106
106
echo "::endgroup::"
107
107
echo -e "${{ env.bashPass }} Built Coverage Tests ${{ env.bashEnd }}"
108
108
109
- wget https://github.com/linux-test-project/lcov/releases/download/v2.3.1/lcov-2.3.1.tar.gz
110
- tar -xvzf lcov-2.3.1.tar.gz
111
- ./lcov-2.3.1/bin/lcov --list --rc branch_coverage=1 test/unit-test/build/coverage.info
109
+ lcov --summary --rc lcov_branch_coverage=1 test/unit-test/build/coverage.info
112
110
113
111
echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }}"
114
112
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3900,12 +3900,6 @@ void vSocketWakeUpUser( FreeRTOS_Socket_t * pxSocket )
3900
3900
if ( pxParentSocket -> u .xTCP .bits .bReuseSocket == pdFALSE_UNSIGNED )
3901
3901
{
3902
3902
pxClientSocket = pxParentSocket -> u .xTCP .pxPeerSocket ;
3903
-
3904
- if ( pxClientSocket != NULL )
3905
- {
3906
- FreeRTOS_printf ( ( "prvAcceptWaitClient: client %p parent %p\n" ,
3907
- ( void * ) pxClientSocket , ( void * ) pxParentSocket ) );
3908
- }
3909
3903
}
3910
3904
else
3911
3905
{
@@ -3932,6 +3926,12 @@ void vSocketWakeUpUser( FreeRTOS_Socket_t * pxSocket )
3932
3926
}
3933
3927
( void ) xTaskResumeAll ();
3934
3928
3929
+ if ( ( pxClientSocket != NULL ) && ( pxParentSocket -> u .xTCP .bits .bReuseSocket == pdFALSE_UNSIGNED ) )
3930
+ {
3931
+ FreeRTOS_printf ( ( "prvAcceptWaitClient: client %p parent %p\n" ,
3932
+ ( void * ) pxClientSocket , ( void * ) pxParentSocket ) );
3933
+ }
3934
+
3935
3935
if ( pxClientSocket != NULL )
3936
3936
{
3937
3937
if ( pxAddressLength != NULL )
Original file line number Diff line number Diff line change @@ -273,8 +273,7 @@ void vProcessGeneratedUDPPacket_IPv4( NetworkBufferDescriptor_t * const pxNetwor
273
273
274
274
/* 'ulIPAddress' might have become the address of the Gateway.
275
275
* Find the route again. */
276
-
277
- pxNetworkBuffer -> pxEndPoint = FreeRTOS_FindEndPointOnNetMask ( pxNetworkBuffer -> xIPAddress .ulIP_IPv4 );
276
+ pxNetworkBuffer -> pxEndPoint = FreeRTOS_FindEndPointOnNetMask ( ulIPAddress );
278
277
279
278
if ( pxNetworkBuffer -> pxEndPoint == NULL )
280
279
{
You can’t perform that action at this time.
0 commit comments