diff tests/test-strftime.c @ 16164:c155aeb8c42e

strftime-tests: also test nanoseconds The test-strftime program did not test the display of nanoseconds. This patch clarifies the expected output for a number of nanoseconds with trailing zeroes. * tests/test-strftime.c (T): Add a test of %N. Signed-off-by: Alex Nelson <ajnelson@cs.ucsc.edu>
author Alex Nelson <ajnelson@cs.ucsc.edu>
date Tue, 13 Dec 2011 18:52:59 -0800
parents 4d990235f694
children 8250f2777afc
line wrap: on
line diff
--- a/tests/test-strftime.c
+++ b/tests/test-strftime.c
@@ -38,6 +38,7 @@
 static struct posixtm_test const T[] =
   {
     { 1300000000, 0,            "%F", "2011-03-13" },
+    { 0,          10,           "%T.%N", "00:00:00.000000010" },
     { 0,          0,            NULL, NULL }
   };