Start moving code coverage tests from VisualStudio (not checked in) to the MingW project (checked in) by creating a second build configuration in the Windows Eclipse project that includes the code coverage command line options. Additionally make minor code updates to ensure configASSERT() is not defined, and the application runs for a finite time, when the code coverage build configuration is used.

This commit is contained in:
Richard Barry 2018-03-06 17:23:55 +00:00
parent c156522695
commit bf8d9f4726
6 changed files with 114 additions and 8 deletions

View file

@ -230,6 +230,7 @@ char cReceivedString[ 15 ];
/* Check the number of bytes received was as expected. */
configASSERT( xReceivedBytes == strlen( cExpectedString ) );
( void ) xReceivedBytes; /* Incase configASSERT() is not defined. */
/* If the received string matches that expected then increment the loop
counter so the check task knows this task is still running. */