diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-05-03 00:33:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-05-03 00:33:54 +0000 |
commit | 6b00df4189bd15fe87244876b7f1a3cf800f72dc (patch) | |
tree | 9f8651b11ce64d33fd2fe3c6b8436596105c2b0f /posix/testcases.h | |
parent | 93256cc1acaefb4c3ae0c13c5b979b298ba66279 (diff) | |
download | glibc-6b00df4189bd15fe87244876b7f1a3cf800f72dc.tar glibc-6b00df4189bd15fe87244876b7f1a3cf800f72dc.tar.gz glibc-6b00df4189bd15fe87244876b7f1a3cf800f72dc.tar.bz2 glibc-6b00df4189bd15fe87244876b7f1a3cf800f72dc.zip |
1997-05-03 00:53 Ulrich Drepper <drepper@cygnus.com>
* posix/TESTS2C.sed: Recognize only digits in first field. This
enables us to use colons in the pattern.
1997-05-01 20:02 Richard Henderson <rth@tamu.edu>
* sysdeps/unix/sysv/linux/alpha/brk.S: Don't presume that the kernel
will preserve non-call-saved registers; save and restore a0 across
the system call.
* sysdeps/unix/sysv/linux/alpha/clone.S: Likewise tuck the thread
data onto the new thread's stack.
Diffstat (limited to 'posix/testcases.h')
-rw-r--r-- | posix/testcases.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/posix/testcases.h b/posix/testcases.h index c471ca0613..d5dce0ae0f 100644 --- a/posix/testcases.h +++ b/posix/testcases.h @@ -157,3 +157,11 @@ {0, "M[ou]'?am+[ae]r .*([AEae]l[- ])?[GKQ]h?[aeu]+([dtz][dhz]?)+af[iy]", "Moammar Qudhafi"}, {0, "M[ou]'?am+[ae]r .*([AEae]l[- ])?[GKQ]h?[aeu]+([dtz][dhz]?)+af[iy]", "Mu'ammar al-Qaddafi"}, {0, "M[ou]'?am+[ae]r .*([AEae]l[- ])?[GKQ]h?[aeu]+([dtz][dhz]?)+af[iy]", "Mulazim Awwal Mu'ammar Muhammad Abu Minyar al-Qadhafi"}, + {0, "[[:digit:]]+", "01234"}, + {1, "[[:alpha:]]+", "01234"}, + {0, "^[[:digit:]]*$", "01234"}, + {1, "^[[:digit:]]*$", "01234a"}, + {0, "^[[:alnum:]]*$", "01234a"}, + {0, "^[[:xdigit:]]*$", "01234a"}, + {1, "^[[:xdigit:]]*$", "01234g"}, + {0, "^[[:alnum:][:space:]]*$", "Hello world"}, |