Skip to content

Commit

Permalink
Fix nasa#1223, shorten TestRunner function name
Browse files Browse the repository at this point in the history
  • Loading branch information
zanzaben committed Mar 18, 2021
1 parent fa10af7 commit 096127b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/README_functionaltest.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To execute tests at startup, the following lines can be added to `cfe_es_startup
designated test target:

CFE_LIB, /cf/cfe_assert.so, CFE_Assert_LibInit, ASSERT_LIB, 0, 0, 0x0, 0;
CFE_APP, /cf/cfe_testrunner.so, CFE_TestRunner_AppMain, TESTRUN_APP, 100, 16384, 0x0, 0;
CFE_APP, /cf/cfe_testrunner.so, CFE_TR_AppMain, TESTRUN_APP, 100, 16384, 0x0, 0;
CFE_LIB, /cf/cfe_testcase.so, CFE_Test_Init, CFETEST_LIB, 0, 0, 0x0, 0;
CFE_LIB, /cf/psp_test.so, PSP_Test_Init, PSPTEST_LIB, 0, 0, 0x0, 0;

Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_testrunner/inc/cfe_testrunner.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
**
**
*************************************************************************/
void CFE_TestRunner_AppMain(void);
void CFE_TR_AppMain(void);

#endif /* cfe_testrunner_h_ */

Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_testrunner/src/cfe_testrunner_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
/*
* Entry point for this application
*/
void CFE_TestRunner_AppMain(void)
void CFE_TR_AppMain(void)
{
int32 rc;
uint32 RunStatus;
Expand Down

0 comments on commit 096127b

Please sign in to comment.