minor edits

This commit is contained in:
stnolting 2020-07-29 19:05:42 +02:00
parent ed85da5589
commit 10545eb447

View file

@ -74,8 +74,11 @@ void test_ok(void);
void test_fail(void);
// Global variables (also test initialization of global vars here)
/// Global counter for failing tests
int cnt_fail = 0;
/// Global counter for successful tests
int cnt_ok = 0;
/// Global counter for total number of tests
int cnt_test = 0;