Logger logs harness seed and test execution keys in hex representation.

This commit is contained in:
Markus Kauppila 2011-07-25 19:33:32 +03:00
parent 279a841b64
commit 46f39ab285
12 changed files with 71 additions and 32 deletions

View file

@ -91,7 +91,7 @@ dummycase1(void *arg)
{
AssertEquals(5, 5, "Assert message");
for(; 1 ;) {
for(; 0 ;) {
Log(0, "uint8: %d", RandomUint8BoundaryValue());
Log(0, "int8: %d", RandomInt8BoundaryValue());
@ -100,7 +100,7 @@ dummycase1(void *arg)
for(; 0 ;) {
int min = -5;
int max = 5;
int random = RandomPositiveIntegerInRange(min, max);
int random = RandomIntegerInRange(min, max);
if(random < min || random > max ) {
AssertFail("Generated incorrect integer");
}