Skip to content

Commit

Permalink
Merge pull request #436 from jphickey/fix-435-ut-entry-point
Browse files Browse the repository at this point in the history
Fix #435: Update UT entry point
Resolve merge conflicts in fsw/cfe-core/unit-test/CMakeLists.txt
  • Loading branch information
skliper committed Jan 14, 2020
2 parents aa37084 + 0951b6a commit 95daf1f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion fsw/cfe-core/unit-test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ foreach(MODULE ${CFE_CORE_MODULES})
target_link_libraries(${CFE_CORE_TARGET}_${MODULE}_UT
ut_${CFE_CORE_TARGET}_support
ut_cfe-core_stubs
ut_bsp)
ut_assert)

# Also add the C FLAGS to the link command
# This should enable coverage analysis on platforms that support this
Expand Down
2 changes: 1 addition & 1 deletion fsw/cfe-core/unit-test/es_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ static int32 ES_UT_SetAppStateHook(void *UserObj, int32 StubRetcode,
return StubRetcode;
}

void OS_Application_Startup(void)
void UtTest_Setup(void)
{
UT_Init("es");
UT_Text("cFE ES Unit Test Output File\n\n");
Expand Down
2 changes: 1 addition & 1 deletion fsw/cfe-core/unit-test/evs_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ static void UT_EVS_DoGenericCheckEvents(void (*Func)(void), UT_EVS_EventCapture_
/*
** Functions
*/
void OS_Application_Startup(void)
void UtTest_Setup(void)
{
/* Initialize unit test */
UT_Init("evs");
Expand Down
2 changes: 1 addition & 1 deletion fsw/cfe-core/unit-test/fs_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static CFE_FS_Decompress_State_t UT_FS_Decompress_State;
/*
** Functions
*/
void OS_Application_Startup(void)
void UtTest_Setup(void)
{
/* Initialize unit test */
UT_Init("fs");
Expand Down
2 changes: 1 addition & 1 deletion fsw/cfe-core/unit-test/sb_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static char cMsg[UT_MAX_MESSAGE_LENGTH];
/*
** Functions
*/
void OS_Application_Startup(void)
void UtTest_Setup(void)
{
UT_Init("sb");
UT_Text("cFE SB Unit Test Output File\n\n");
Expand Down
2 changes: 1 addition & 1 deletion fsw/cfe-core/unit-test/tbl_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ CFE_TBL_RegistryRec_t Original[CFE_PLATFORM_TBL_MAX_NUM_TABLES];
/*
** Functions
*/
void OS_Application_Startup(void)
void UtTest_Setup(void)
{
/* Initialize unit test */
UT_Init("tbl");
Expand Down
2 changes: 1 addition & 1 deletion fsw/cfe-core/unit-test/time_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void OS_SelectTone(int16 Signal)
}
#endif

void OS_Application_Startup(void)
void UtTest_Setup(void)
{
/* Initialize unit test */
UT_Init("time");
Expand Down

0 comments on commit 95daf1f

Please sign in to comment.