about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Bernat <vincent@bernat.im>2015-03-06 12:01:52 +0100
committerMike Frysinger <vapier@gentoo.org>2015-03-06 06:06:26 -0500
commit5df56c7e3a236b39b3395e042015b541172f652b (patch)
tree437ace7b6ac2d2d243bfde09a93682ce73c925f5
parent1cdf2ea1fa44bae7d400b602399e30d490173bf3 (diff)
downloadglibc-5df56c7e3a236b39b3395e042015b541172f652b.tar.gz
glibc-5df56c7e3a236b39b3395e042015b541172f652b.tar.xz
glibc-5df56c7e3a236b39b3395e042015b541172f652b.zip
time: ensure failing strptime() tests are reported correctly
-rw-r--r--ChangeLog6
-rw-r--r--time/tst-strptime2.c5
-rw-r--r--time/tst-strptime3.c5
3 files changed, 8 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 420f351ee0..0eb779d91f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-03-06  Vincent Bernat  <vincent@bernat.im>
+
+	* time/tst-strptime2.c (do_test): Ensure failing tests are
+	reported correctly.
+	* time/tst-strptime3.c (do_test): Likewise.
+
 2015-03-06  Samuel Thibault  <samuel.thibault@inria.fr>
 
 	Fix aio_error thread-safety.
diff --git a/time/tst-strptime2.c b/time/tst-strptime2.c
index bcd6cc8be9..a08e6d7cb7 100644
--- a/time/tst-strptime2.c
+++ b/time/tst-strptime2.c
@@ -52,10 +52,7 @@ do_test (void)
 	}
     }
 
-  if (result == 0)
-    puts ("all OK");
-
-  return 0;
+  return result;
 }
 
 #define TEST_FUNCTION do_test ()
diff --git a/time/tst-strptime3.c b/time/tst-strptime3.c
index 75b57c1928..d53f51ee22 100644
--- a/time/tst-strptime3.c
+++ b/time/tst-strptime3.c
@@ -48,10 +48,7 @@ do_test (void)
       result = 1;
     }
 
-  if (result == 0)
-    puts ("all OK");
-
-  return 0;
+  return result;
 }
 
 #define TEST_FUNCTION do_test ()