about summary refs log tree commit diff
path: root/Test/D07multibyte.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-10-18 16:03:17 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-10-18 16:03:17 +0000
commit96a1f68875132a63a408902bf25e99d40fb14a89 (patch)
tree594bd47db07d0aa372e1fdb5ec820311a42a4dd9 /Test/D07multibyte.ztst
parent802cdd4f5e822ffdb2f895943a27b4ca88c9a9f2 (diff)
downloadzsh-96a1f68875132a63a408902bf25e99d40fb14a89.tar.gz
zsh-96a1f68875132a63a408902bf25e99d40fb14a89.tar.xz
zsh-96a1f68875132a63a408902bf25e99d40fb14a89.zip
25911: see if we can work around multibyte problems in file system
Diffstat (limited to 'Test/D07multibyte.ztst')
-rw-r--r--Test/D07multibyte.ztst15
1 files changed, 6 insertions, 9 deletions
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/()Ā/*