about summary refs log tree commit diff
path: root/posix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-11-29 21:57:56 +0000
committerUlrich Drepper <drepper@redhat.com>2001-11-29 21:57:56 +0000
commit096f1151253a0bf4da9e64deefe7c99da62a6b52 (patch)
tree841a1f08f76ca1fdded22deeb470f01e4f2397f5 /posix
parent638670cd4e24cba8fdab5b7bbbe9907952397024 (diff)
downloadglibc-096f1151253a0bf4da9e64deefe7c99da62a6b52.tar.gz
glibc-096f1151253a0bf4da9e64deefe7c99da62a6b52.tar.xz
glibc-096f1151253a0bf4da9e64deefe7c99da62a6b52.zip
Update.
2001-11-29  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/generic/glob.c (next_brace_sub): Return NULL if braces
	don't match, fix {{a,b},c} globbing, clean up.
	Patch by Flavio Veloso <flaviovs@magnux.com>.
	* posix/globtest.sh: Add new tests.
Diffstat (limited to 'posix')
-rwxr-xr-xposix/globtest.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/posix/globtest.sh b/posix/globtest.sh
index 678a6d9b1a..b85a8e529b 100755
--- a/posix/globtest.sh
+++ b/posix/globtest.sh
@@ -146,6 +146,32 @@ if test $failed -ne 0; then
   result=1
 fi
 
+failed=0
+${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
+${common_objpfx}posix/globtest -b "$testdir" "{file{1,2},-file3}" |
+sort > $testout
+cat <<"EOF" | cmp - $testout >> $logfile || failed=1
+`-file3'
+`file1'
+`file2'
+EOF
+if test $failed -ne 0; then
+  echo "Braces test 2 failed" >> $logfile
+  result=1
+fi
+
+failed=0
+${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
+${common_objpfx}posix/globtest -b "$testdir" "{" |
+sort > $testout
+cat <<"EOF" | cmp - $testout >> $logfile || failed=1
+GLOB_NOMATCH
+EOF
+if test $failed -ne 0; then
+  echo "Braces test 3 failed" >> $logfile
+  result=1
+fi
+
 # Test NOCHECK
 failed=0
 ${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \