update-copyright: generalize comment handling
[gnulib.git] / tests / test-strerror.c
index 752afe2..3d9814d 100644 (file)
@@ -40,10 +40,19 @@ int
 main (int argc, char **argv)
 {
   char *str;
+
   str = strerror (EACCES);
   ASSERT (str);
   ASSERT (*str);
 
+  str = strerror (ETIMEDOUT);
+  ASSERT (str);
+  ASSERT (*str);
+
+  str = strerror (EOVERFLOW);
+  ASSERT (str);
+  ASSERT (*str);
+
   str = strerror (0);
   ASSERT (str);
   ASSERT (*str);