Skip to content

Commit

Permalink
Fix nasa#491, increase UT assert buffer sizes
Browse files Browse the repository at this point in the history
The buffer for context info increases from 128 to 256 bytes
  • Loading branch information
jphickey committed Jun 16, 2020
1 parent 07fd022 commit 2d79f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ut_assert/src/utassert.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ bool UtAssert(bool Expression, const char *Description, const char *File, uint32
bool UtAssertEx(bool Expression, UtAssert_CaseType_t CaseType, const char *File, uint32 Line, const char *MessageFormat, ...)
{
va_list va;
char FinalMessage[128];
char FinalMessage[256];

++UT_SegmentCounters.TotalTestCases;

Expand Down

0 comments on commit 2d79f8e

Please sign in to comment.