diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/testsuite.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/testsuite.h b/test/testsuite.h index afc45b0c0..84c78156a 100644 --- a/test/testsuite.h +++ b/test/testsuite.h @@ -27,11 +27,12 @@ void error_msg(int result, int line, const char* file, const char* command) { failures++; - printf("\nFAILED TEST %lu: \n\t%s\n", (unsigned long)test_number, command); + printf("\nFAILED TEST %lu: \n\t%s\nResult: %d", + (unsigned long)test_number, command, result); printf("AT LINE: %d, FILE: %s\n\n", line, file); } -void success_msg(int result, const char* command) +void success_msg(int result __attribute__((unused)), const char* command __attribute__((unused))) { #if 0 printf("passed test: %s == 0\n", command); |