Skip to content

Commit 76d41e1

Browse files
committed
Clearly demark test results in debug log
To not drown in the rest of the output.
1 parent 08fc073 commit 76d41e1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main.c

+2
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,13 @@ void RosInitTask()
6767
Ros_Debug_LogToConsole("%s - boot", APPLICATION_VERSION);
6868

6969
#ifdef MOTOROS2_TESTING_ENABLE
70+
Ros_Debug_BroadcastMsg("===");
7071
Ros_Debug_BroadcastMsg("Performing unit tests");
7172
BOOL bTestResult = TRUE;
7273
bTestResult &= Ros_Testing_CtrlGroup();
7374
bTestResult &= Ros_Testing_RosMotoPlusConversionUtils();
7475
bTestResult ? Ros_Debug_BroadcastMsg("Testing SUCCESSFUL") : Ros_Debug_BroadcastMsg("!!! Testing FAILED !!!");
76+
Ros_Debug_BroadcastMsg("===");
7577
#endif
7678

7779
Ros_ConfigFile_Parse();

0 commit comments

Comments
 (0)