Skip to content

Commit

Permalink
Fix #1725 Update time_UT.c to use UtAssert_MIR
Browse files Browse the repository at this point in the history
  • Loading branch information
pepepr08 committed Jul 29, 2021
1 parent cc8c9a1 commit 35e0269
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions modules/time/ut-coverage/time_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -848,9 +848,8 @@ void Test_Print(void)
}
else
{
UtAssertEx(false, UTASSERT_CASETYPE_MIR, __FILE__, __LINE__,
"Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s", time.Seconds,
time.Subseconds, timeBuf);
UtAssert_MIR("Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s",
time.Seconds, time.Subseconds, timeBuf);
}

/* Test with a time value that causes seconds >= 60 when
Expand All @@ -867,9 +866,8 @@ void Test_Print(void)
}
else
{
UtAssertEx(false, UTASSERT_CASETYPE_MIR, __FILE__, __LINE__,
"Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s", time.Seconds,
time.Subseconds, timeBuf);
UtAssert_MIR("Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s",
time.Seconds, time.Subseconds, timeBuf);
}

/* Test with mission representative time values */
Expand All @@ -884,9 +882,8 @@ void Test_Print(void)
}
else
{
UtAssertEx(false, UTASSERT_CASETYPE_MIR, __FILE__, __LINE__,
"Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s", time.Seconds,
time.Subseconds, timeBuf);
UtAssert_MIR("Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s",
time.Seconds, time.Subseconds, timeBuf);
}

/* Test with maximum seconds and subseconds values */
Expand All @@ -901,9 +898,8 @@ void Test_Print(void)
}
else
{
UtAssertEx(false, UTASSERT_CASETYPE_MIR, __FILE__, __LINE__,
"Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s", time.Seconds,
time.Subseconds, timeBuf);
UtAssert_MIR("Confirm adding seconds = %u, subseconds = %u to configured EPOCH results in time %s",
time.Seconds, time.Subseconds, timeBuf);
}
}

Expand Down

0 comments on commit 35e0269

Please sign in to comment.