about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-04-27 03:45:05 +0000
committerAndreas Jaeger <aj@suse.de>2000-04-27 03:45:05 +0000
commit312afddb246616b0603ba54d3fce90786fa8fe72 (patch)
tree0bf4841a6ec0e049b8393762612c8aa8c27a7a9a
parentfff1a600dc2d1e095daaf1b4f6fc505b91aa6752 (diff)
downloadglibc-312afddb246616b0603ba54d3fce90786fa8fe72.tar.gz
glibc-312afddb246616b0603ba54d3fce90786fa8fe72.tar.xz
glibc-312afddb246616b0603ba54d3fce90786fa8fe72.zip
Update.
2000-04-18  H.J. Lu  <hjl@gnu.org>

        * posix/globtest.sh: Properly apply the patch by Ulrich Drepper
        <drepper@redhat.com> on 2000-04-13.
-rw-r--r--ChangeLog5
-rwxr-xr-xposix/globtest.sh12
2 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 6adf933014..2289908c5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-04-18  H.J. Lu  <hjl@gnu.org>
+
+        * posix/globtest.sh: Properly apply the patch by Ulrich Drepper
+        <drepper@redhat.com> on 2000-04-13.
+
 2000-04-27  Bruno Haible  <clisp.cons.org>
 
 	* intl/ngettext.c [!_LIBC]: Fix definition of NGETTEXT.
diff --git a/posix/globtest.sh b/posix/globtest.sh
index 956a5e6bb1..27e340c14b 100755
--- a/posix/globtest.sh
+++ b/posix/globtest.sh
@@ -235,6 +235,12 @@ echo ~ | cmp - $testout || result=1
 ${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
 ${common_objpfx}posix/globtest -q -t "$testdir" "~/" |
 sort > $testout
+echo ~/ | cmp - $testout || result=1
+
+# Test tilde expansion with username
+${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
+${common_objpfx}posix/globtest -q -t "$testdir" "~"$USER |
+sort > $testout
 # Some shell incorrectly(?) convert ~/ into // if ~ expands to /.
 if test ~/ = //; then
     echo / | cmp - $testout || result=1
@@ -242,12 +248,6 @@ else
     echo ~/ | cmp - $testout || result=1
 fi
 
-# Test tilde expansion with username
-${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
-${common_objpfx}posix/globtest -q -t "$testdir" "~"$USER |
-sort > $testout
-eval echo ~$USER | cmp - $testout || result=1
-
 # Tilde expansion shouldn't match a file
 ${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
 ${common_objpfx}posix/globtest -T "$testdir" "~file4" |