]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - time/bug-asctime_r.c
Set the expects flags to clock_nanosleep
[thirdparty/glibc.git] / time / bug-asctime_r.c
index 2579a6a3b075e9fe508dd73ac066078c0952a3b5..86651ef1c59a96e7bb7fd3b161b92b1d6d4994c3 100644 (file)
@@ -13,12 +13,18 @@ do_test (void)
   tp->tm_year = 10000 - 1900;
   char buf[1000];
   errno = 0;
+  buf[26] = '\xff';
   char *s = asctime_r (tp, buf);
   if (s != NULL || errno != EOVERFLOW)
     {
       puts ("asctime_r did not fail correctly");
       result = 1;
     }
+  if (buf[26] != '\xff')
+    {
+      puts ("asctime_r overwrote 27th byte in buffer");
+      result = 1;
+    }
   return result;
 }