Correct one of the tests added in the last change. Really get the root passwd entry...
authorUlrich Drepper <drepper@redhat.com>
Tue, 14 Mar 2000 09:09:43 +0000 (09:09 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 14 Mar 2000 09:09:43 +0000 (09:09 +0000)
posix/wordexp-test.c

index dba5109..69cfbb1 100644 (file)
@@ -270,6 +270,17 @@ main (int argc, char *argv[])
 
       if (testit (&ts))
        ++fail;
+
+      ts.retval = 0;
+      ts.env = pw->pw_dir;
+      ts.words = "${var#~root}x";
+      ts.flags = 0;
+      ts.wordc = 1;
+      ts.wordv[0] = "x";
+      ts.ifs = IFS;
+
+      if (testit (&ts))
+       ++fail;
     }
 
   /* "~" expands to value of $HOME when HOME is set */
@@ -303,17 +314,6 @@ main (int argc, char *argv[])
 
       if (testit (&ts))
        ++fail;
-
-      ts.retval = 0;
-      ts.env = pw->pw_dir;
-      ts.words = "${var#~root}x";
-      ts.flags = 0;
-      ts.wordc = 1;
-      ts.wordv[0] = "x";
-      ts.ifs = IFS;
-
-      if (testit (&ts))
-       ++fail;
     }
 
   puts ("tests completed, now cleaning up");