1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 08:25:58 +01:00

Adjust testHexPrintsUpToMaxNumberOfNibbles (independent of sizeof operator and arithmetics)

This commit is contained in:
Fabian Zahn
2019-05-12 09:16:41 +02:00
parent c9b1d217fd
commit 8168382b91

View File

@@ -5730,7 +5730,11 @@ void testHexPrintsUpToMaxNumberOfNibbles(void)
startPutcharSpy();
UnityPrintNumberHex(0xBEE, 21);
endPutcharSpy();
TEST_ASSERT_EQUAL_INT(sizeof(UNITY_INT)*2, strlen(getBufferPutcharSpy()));
#ifdef UNITY_SUPPORT_64
TEST_ASSERT_EQUAL_INT(16, strlen(getBufferPutcharSpy()));
#else
TEST_ASSERT_EQUAL_INT( 8, strlen(getBufferPutcharSpy()));
#endif
#endif
}