summaryrefslogtreecommitdiffstats
path: root/test/h5test.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/h5test.h')
-rw-r--r--test/h5test.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/h5test.h b/test/h5test.h
index 98f6060..fd8a21d 100644
--- a/test/h5test.h
+++ b/test/h5test.h
@@ -39,9 +39,9 @@ extern const char *FILENAME[];
* the FAILED() macro is invoked automatically when an API function fails.
*/
#define TESTING(WHAT) {printf("%-70s", "Testing " WHAT); fflush(stdout);}
-#define PASSED() puts(" PASSED")
-#define FAILED() puts("*FAILED*")
-#define SKIPPED() puts(" -SKIP-")
+#define PASSED() {puts(" PASSED");fflush(stdout);}
+#define FAILED() {puts("*FAILED*");fflush(stdout);}
+#define SKIPPED() {puts(" -SKIP-");fflush(stdout);}
/*
* Print the current location on the standard output stream.