Skip to content

Commit

Permalink
meson: Log the registerTests invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
amyspark committed Sep 3, 2023
1 parent 98e5f7a commit 236bdc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crunch/Core.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "Logger.h"
#include "StringFuncs.h"

test *tests;
test *tests = NULL;
uint32_t passes = 0, failures = 0;
int32_t allocCount = -1;

Expand Down
2 changes: 2 additions & 0 deletions crunch/crunch.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ uint8_t tryRegistration(void *testSuite)
dlclose(testSuite);
return FALSE;
}
testPrintf("Calling registerTests (%p)\n", registerTests);

Check warning on line 212 in crunch/crunch.c

View check run for this annotation

Codecov / codecov/patch

crunch/crunch.c#L212

Added line #L212 was not covered by tests
registerTests();
testPrintf("tests: (%p)\n", tests);

Check warning on line 214 in crunch/crunch.c

View check run for this annotation

Codecov / codecov/patch

crunch/crunch.c#L214

Added line #L214 was not covered by tests
return TRUE;
}

Expand Down

0 comments on commit 236bdc6

Please sign in to comment.