Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/testsuite/include/check.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index b9a55a4f2..ff1e84407 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,5 +1,9 @@
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.
* libc/stdio/ungetc.c (_ungetc_r): New reentrant function.
(__submore): Add reentrant struct pointer argument.
diff --git a/newlib/testsuite/include/check.h b/newlib/testsuite/include/check.h
index df7f0cfa2..0072771e6 100644
--- a/newlib/testsuite/include/check.h
+++ b/newlib/testsuite/include/check.h
@@ -2,6 +2,7 @@
if (!(a)) \
{ \
printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
+ fflush(stdout); \
abort(); \
} \
}