Skip to content

Commit e58b85a

Browse files
committed
WIP #1130, Change dontcare to flow
1 parent 1d69344 commit e58b85a

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

ut_assert/inc/utassert.h

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,21 @@
5353
*/
5454
typedef enum
5555
{
56-
UTASSERT_CASETYPE_NONE, /**< Reserved value, No messages should be used with this */
57-
UTASSERT_CASETYPE_ABORT, /**< Test sequence abort (major failure, cannot continue) */
58-
UTASSERT_CASETYPE_FAILURE, /**< Test case failure status messages */
59-
UTASSERT_CASETYPE_TSF, /**< Test Setup Failure (TSF) status messages */
60-
UTASSERT_CASETYPE_TTF, /**< Test Teardown Failure (TTF) status messages */
61-
UTASSERT_CASETYPE_MIR, /**< Manual Inspection Required (MIR) status messages */
62-
UTASSERT_CASETYPE_WARN, /**< Test was unable to run (WARN) status messages (e.g. initial condition wrong) */
63-
UTASSERT_CASETYPE_NA, /**< Test Not Applicable (NA) status messages */
64-
UTASSERT_CASETYPE_BEGIN, /**< Beginning of test status messages */
65-
UTASSERT_CASETYPE_END, /**< End of test status messages */
66-
UTASSERT_CASETYPE_INFO, /**< All other informational status messages */
67-
UTASSERT_CASETYPE_PASS, /**< Test case passed (normal) status messages */
68-
UTASSERT_CASETYPE_DONTCARE, /**< Other condition checks/messages that do not consitute test case failures */
69-
UTASSERT_CASETYPE_DEBUG, /**< Debugging messages */
70-
UTASSERT_CASETYPE_MAX /**< Reserved value, No messages should be used with this */
56+
UTASSERT_CASETYPE_NONE, /**< Reserved value, No messages should be used with this */
57+
UTASSERT_CASETYPE_ABORT, /**< Test sequence abort (major failure, cannot continue) */
58+
UTASSERT_CASETYPE_FAILURE, /**< Test case failure status messages */
59+
UTASSERT_CASETYPE_TSF, /**< Test Setup Failure (TSF) status messages */
60+
UTASSERT_CASETYPE_TTF, /**< Test Teardown Failure (TTF) status messages */
61+
UTASSERT_CASETYPE_MIR, /**< Manual Inspection Required (MIR) status messages */
62+
UTASSERT_CASETYPE_WARN, /**< Test was unable to run (WARN) status messages (e.g. initial condition wrong) */
63+
UTASSERT_CASETYPE_NA, /**< Test Not Applicable (NA) status messages */
64+
UTASSERT_CASETYPE_BEGIN, /**< Beginning of test status messages */
65+
UTASSERT_CASETYPE_END, /**< End of test status messages */
66+
UTASSERT_CASETYPE_INFO, /**< All other informational status messages */
67+
UTASSERT_CASETYPE_PASS, /**< Test case passed (normal) status messages */
68+
UTASSERT_CASETYPE_FLOW, /**< Other condition checks/messages that record test flow, but are not assertions */
69+
UTASSERT_CASETYPE_DEBUG, /**< Debugging messages */
70+
UTASSERT_CASETYPE_MAX /**< Reserved value, No messages should be used with this */
7171
} UtAssert_CaseType_t;
7272

7373
/**

ut_assert/src/utbsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ void UT_BSP_DoText(uint8 MessageType, const char *OutputMessage)
169169
case UTASSERT_CASETYPE_INFO:
170170
Prefix = "INFO";
171171
break;
172-
case UTASSERT_CASETYPE_DONTCARE:
173-
Prefix = "DC";
172+
case UTASSERT_CASETYPE_FLOW:
173+
Prefix = "FLOW";
174174
break;
175175
case UTASSERT_CASETYPE_DEBUG:
176176
Prefix = "DEBUG";

0 commit comments

Comments
 (0)