This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.19-792-g4a2552c


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  4a2552c3eb41da2cf404ce23fe3aed0ec4862531 (commit)
      from  c213442ddd356541497666b82670eb7fe5e21869 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4a2552c3eb41da2cf404ce23fe3aed0ec4862531

commit 4a2552c3eb41da2cf404ce23fe3aed0ec4862531
Author: Andreas Schwab <schwab@suse.de>
Date:   Wed Jul 9 11:06:00 2014 +0200

    Fix missing newline in test output

diff --git a/ChangeLog b/ChangeLog
index 70e8681..a260f6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2014-07-09  Andreas Schwab  <schwab@suse.de>
 
+	* sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
+	output.
+	* sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
+	(do_test): Likewise.
+
 	* sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
 
 2014-07-09  Will Newton  <will.newton@linaro.org>
diff --git a/sysdeps/powerpc/test-gettimebase.c b/sysdeps/powerpc/test-gettimebase.c
index 63c84bf..5786a51 100644
--- a/sysdeps/powerpc/test-gettimebase.c
+++ b/sysdeps/powerpc/test-gettimebase.c
@@ -39,7 +39,7 @@ do_test (void)
   if (t1 != t2 && t1 != t3 && t2 != t3)
     return 0;
 
-  printf ("Fail: timebase reads should always be different.");
+  printf ("Fail: timebase reads should always be different.\n");
   return 1;
 }
 
diff --git a/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c b/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
index af765bc..6b1c812 100644
--- a/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
+++ b/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
@@ -41,7 +41,7 @@ do_test (void)
   printf ("Time Base frequency = %"PRIu64" Hz\n", f);
 
   if (f == 0) {
-      printf ("Fail: The time base frequency can't be zero.");
+      printf ("Fail: The time base frequency can't be zero.\n");
       return 1;
   }
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                          |    5 +++++
 sysdeps/powerpc/test-gettimebase.c                 |    2 +-
 .../unix/sysv/linux/powerpc/test-gettimebasefreq.c |    2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]