From 96a1f68875132a63a408902bf25e99d40fb14a89 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Sat, 18 Oct 2008 16:03:17 +0000 Subject: 25911: see if we can work around multibyte problems in file system --- ChangeLog | 5 +++++ Test/D07multibyte.ztst | 15 ++++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7d53aaa6b..fc5fbbb3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-18 Peter Stephenson + + * 25911: Test/D07multibyte.ztst: see if we can work around file + system idiosyncracies. + 2008-10-18 Clint Adams * 25910: Src/builtin.c: avoid dangling file handle in bin_print. diff --git a/Test/D07multibyte.ztst b/Test/D07multibyte.ztst index 1273b6200..f8b00fb88 100644 --- a/Test/D07multibyte.ztst +++ b/Test/D07multibyte.ztst @@ -396,13 +396,10 @@ >OK >OK - mkdir glob - mkdir glob/'()Ą' glob/'()Ā' - mkdir glob/'()Ą'/foo glob/'()Ā'/bar - tmp1=('glob/\(\)Ą/*') - print $~tmp1 - tmp1=('glob/\(\)Ā/*') - print $~tmp1 + tmp1='glob/\(\)Ą/*' + [[ glob/'()Ą'/foo == $~tmp1 ]] && print "Matched against $tmp1" + tmp1='glob/\(\)Ā/*' + [[ glob/'()Ā'/bar == $~tmp1 ]] && print "Matched against $tmp1" 0:Backslashes and metafied characters in patterns ->glob/()Ą/foo ->glob/()Ā/bar +>Matched against glob/()Ą/* +>Matched against glob/()Ā/* -- cgit 1.4.1