autoupdate
[gnulib.git] / tests / test-xstrtol.c
index fa9cf72..c3670cc 100644 (file)
@@ -1,6 +1,5 @@
 /* Test of xstrtol module.
-   Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-   2006, 2007 Free Software Foundation, Inc.
+   Copyright (C) 1995-1996, 1998-2001, 2003-2014 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 
 char *program_name;
 
+/* Don't show the program name in error messages.  */
+static void
+print_no_progname (void)
+{
+}
+
 int
 main (int argc, char **argv)
 {
@@ -39,6 +44,8 @@ main (int argc, char **argv)
   int i;
 
   program_name = argv[0];
+  error_print_progname = print_no_progname;
+
   for (i = 1; i < argc; i++)
     {
       char *p;
@@ -46,13 +53,13 @@ main (int argc, char **argv)
 
       s_err = __xstrtol (argv[i], &p, 0, &val, "bckMw0");
       if (s_err == LONGINT_OK)
-       {
-         printf ("%s->%" __spec " (%s)\n", argv[i], val, p);
-       }
+        {
+          printf ("%s->%" __spec " (%s)\n", argv[i], val, p);
+        }
       else
-       {
-         xstrtol_fatal (s_err, -2, 'X', NULL, argv[i]);
-       }
+        {
+          xstrtol_fatal (s_err, -2, 'X', NULL, argv[i]);
+        }
     }
   exit (0);
 }