diff options
Diffstat (limited to 'minctest.h')
-rw-r--r-- | minctest.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -26,7 +26,9 @@ typedef struct { uint16_t passed; // Number of passed tests uint16_t failed; // Number of failed tests bool show_pass; // Whether or not to print a message when a test passes - struct timeval start_last_test; + struct timeval start_last_test; // Time last test was started + struct timeval created; // Time this was created + __suseconds_t used; // usecs used for tests } tester; /** |