about summary refs log tree commit diff
path: root/posix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-12-10 11:39:40 +0000
committerUlrich Drepper <drepper@redhat.com>1998-12-10 11:39:40 +0000
commit04c216a86081390c5c89f28810f0a868d78e5e31 (patch)
tree340241d56542077a41617a12b87fe42bf2cc1fe0 /posix
parent38e110968123cfc3a85c50d79b656ad367d1a92f (diff)
downloadglibc-04c216a86081390c5c89f28810f0a868d78e5e31.tar.gz
glibc-04c216a86081390c5c89f28810f0a868d78e5e31.tar.xz
glibc-04c216a86081390c5c89f28810f0a868d78e5e31.zip
Update.
1998-12-10  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>

	* nis/nss_compat/compat-pwd.c: fix handling of +/- entries.
Diffstat (limited to 'posix')
-rw-r--r--posix/ptestcases.h15
-rw-r--r--posix/testcases.h2
2 files changed, 1 insertions, 16 deletions
diff --git a/posix/ptestcases.h b/posix/ptestcases.h
index 1618fe7f34..76cbb6c59d 100644
--- a/posix/ptestcases.h
+++ b/posix/ptestcases.h
@@ -42,11 +42,6 @@
   { -1, -1, "\\(^*ab\\)", "^*ab",  },
   { -1, -1, "\\(^*b\\)", "a*b",  },
   { -1, -1, "\\(^*b\\)", "^*b",  },
-  { 0, 0, "GA113(2)", NULL, },
-  { -1, -1, "\\(^*ab\\)", "*ab",  },
-  { -1, -1, "\\(^*ab\\)", "^*ab",  },
-  { 1, 1, "\\(^*b\\)", "b",  },
-  { 1, 3, "\\(^*b\\)", "^^b",  },
   { 0, 0, "GA114", NULL, },
   { 1, 3, "a^b", "a^b",  },
   { 1, 3, "a\\^b", "a^b",  },
@@ -275,11 +270,6 @@
   { 1, 1, "\\(^^\\)", "^^",  },
   { 1, 3, "\\(^abc\\)", "abcdef",  },
   { -1, -1, "\\(^def\\)", "abcdef",  },
-  { 0, 0, "GA145(2)", NULL, },
-  { -1, -1, "\\(^a\\)\\1", "aabc",  },
-  { 1, 4, "\\(^a\\)\\1", "^a^abc",  },
-  { -1, -1, "\\(^^a\\)", "^a",  },
-  { 1, 2, "\\(^^\\)", "^^",  },
   { 0, 0, "GA146", NULL, },
   { 3, 3, "a$", "cba",  },
   { -1, -1, "a$", "abc",  },
@@ -295,11 +285,6 @@
   { 1, 2, "\\(ab$\\)", "ab",  },
   { 4, 6, "\\(def$\\)", "abcdef",  },
   { -1, -1, "\\(abc$\\)", "abcdef",  },
-  { 0, 0, "GA147(2)", NULL, },
-  { -1, -1, "\\(a$\\)\\1", "bcaa",  },
-  { 2, 5, "\\(a$\\)\\1", "ba$a$",  },
-  { -1, -1, "\\(ab$\\)", "ab",  },
-  { 1, 3, "\\(ab$\\)", "ab$",  },
   { 0, 0, "GA148", NULL, },
   { 0, 0, "^$", "",  },
   { 1, 3, "^abc$", "abc",  },
diff --git a/posix/testcases.h b/posix/testcases.h
index d5dce0ae0f..5f3b38921a 100644
--- a/posix/testcases.h
+++ b/posix/testcases.h
@@ -39,7 +39,7 @@
   {0, "a[b-d]", "aac"},
   {0, "a[-b]", "a-"},
   {0, "a[b-]", "a-"},
-  {1, "a[b-a]", "-"},
+  {2, "a[b-a]", "-"},
   {2, "a[]b", "-"},
   {2, "a[", "-"},
   {0, "a]", "a]"},