mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-05 09:01:07 +00:00
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.
This commit is contained in:
parent
638670cd4e
commit
096f115125
@ -1,3 +1,10 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
2001-11-29 Andreas Jaeger <aj@suse.de>
|
2001-11-29 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/x86_64/Versions: Add arch_prctl.
|
* sysdeps/unix/sysv/linux/x86_64/Versions: Add arch_prctl.
|
||||||
|
@ -146,6 +146,32 @@ if test $failed -ne 0; then
|
|||||||
result=1
|
result=1
|
||||||
fi
|
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
|
# Test NOCHECK
|
||||||
failed=0
|
failed=0
|
||||||
${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
|
${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
|
||||||
|
Loading…
Reference in New Issue
Block a user