2004-05-03 Artem B. Bityuckiy <abitytsky@softminecorp.com>

* testsuite/include/check.h (CHECK): Add flush of stdout.
This commit is contained in:
Jeff Johnston 2004-05-03 17:31:22 +00:00
parent 20b0251ab3
commit 1c63798e1d
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-05-03 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* testsuite/include/check.h (CHECK): Add flush of stdout.
2004-05-03 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* libc/include/stdio.h (_ungetc_r): New prototype.

View File

@ -2,6 +2,7 @@
if (!(a)) \
{ \
printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
fflush(stdout); \
abort(); \
} \
}