]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix missing newline in test output
authorAndreas Schwab <schwab@suse.de>
Wed, 9 Jul 2014 09:06:00 +0000 (11:06 +0200)
committerAndreas Schwab <schwab@suse.de>
Wed, 9 Jul 2014 09:07:24 +0000 (11:07 +0200)
ChangeLog
sysdeps/powerpc/test-gettimebase.c
sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c

index 70e86817308e940460f0c625cfe0533a137d94b6..a260f6e34405d176f7b252d49134964ce7cfe8d5 100644 (file)
--- 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>
index 63c84bfe20b3699a522ba918e385a2d6096897af..5786a513d969a1a8ad645770d563389cde531bae 100644 (file)
@@ -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;
 }
 
index af765bc6355f03eccaada1cc7b6b434c265f0169..6b1c812a9f906c7f2c2d18c02173f2cd42584006 100644 (file)
@@ -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;
   }