Tests for module 'unistr/u8-strncpy'.
[gnulib.git] / tests / test-argp.c
index d1f0054..14ed52d 100644 (file)
@@ -1,20 +1,19 @@
 /* Test suite for argp.
-   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+   Copyright (C) 2006-2007, 2009-2010 Free Software Foundation, Inc.
    This file is part of the GNUlib Library.
 
-   This program is free software; you can redistribute it and/or modify
+   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
-   the Free Software Foundation; either version 2, or (at your option)
-   any later version.
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 
-   You should have received a copy of the GNU General Public License along
-   with this program; if not, write to the Free Software Foundation,
-   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
@@ -229,7 +228,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
     {
     case ARGP_KEY_INIT:
       for (i = 0; state->root_argp->children[i].argp; i++)
-       state->child_inputs[i] = args;
+        state->child_inputs[i] = args;
       break;
 
     case 't':
@@ -349,7 +348,7 @@ test6(struct argp *argp)
 
 void
 test_optional(struct argp *argp, int argc, char **argv,
-             struct test_args *args, char *val, char *a)
+              struct test_args *args, char *val, char *a)
 {
   int index;
   if (argp_parse (argp, argc, argv, 0, &index, args))
@@ -360,7 +359,7 @@ test_optional(struct argp *argp, int argc, char **argv,
   if (!val)
     {
       if (args->optional)
-       fail("option processed incorrectly");
+        fail("option processed incorrectly");
     }
   else if (strcmp (args->optional, val))
     fail("option processed incorrectly");
@@ -368,9 +367,9 @@ test_optional(struct argp *argp, int argc, char **argv,
   if (a)
     {
       if (index == argc)
-       fail("expected command line argument not found");
+        fail("expected command line argument not found");
       else if (strcmp(argv[index], a))
-       fail("expected command line argument does not match");
+        fail("expected command line argument does not match");
     }
 }