about summary refs log tree commit diff
path: root/Test
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-11-02 03:49:43 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-11-02 03:49:43 +0000
commitb5feae1349c2d055a2c5604b02743444a8424de2 (patch)
tree6249c0044511f0ba8f29aa0090bef6bc95ed008b /Test
parent329e4e3f04304054589cd103041762d43041fdd3 (diff)
downloadzsh-b5feae1349c2d055a2c5604b02743444a8424de2.tar.gz
zsh-b5feae1349c2d055a2c5604b02743444a8424de2.tar.xz
zsh-b5feae1349c2d055a2c5604b02743444a8424de2.zip
Reverse out this piece of 23118/23119, as they don't belong on this branch.
Diffstat (limited to 'Test')
-rw-r--r--Test/B03print.ztst24
1 files changed, 1 insertions, 23 deletions
diff --git a/Test/B03print.ztst b/Test/B03print.ztst
index 92a24d6b6..e36e55caa 100644
--- a/Test/B03print.ztst
+++ b/Test/B03print.ztst
@@ -34,12 +34,7 @@
 >baz
 >bar
 
-# some locales force case-insensitive sorting
- (LC_ALL=C; print -o a B c)
-0:case-sensitive argument sorting
->B a c
-
- (LC_ALL=C; print -io a B c)
+ print -io a B c
 0:case-insensitive argument sorting
 >a B c
 
@@ -268,20 +263,3 @@
  printf '%b\n' '\0123'
 0:printf handles \0... octal escapes in replacement text
 >S
-
- print -lO $'a' $'a\0' $'a\0b' $'a\0b\0' $'a\0b\0a' $'a\0b\0b' $'a\0c' |
- while read -r line; do
-    for (( i = 1; i <= ${#line}; i++ )); do
-      foo=$line[i]
-      printf "%02x" $(( #foo ))
-    done
-    print
- done
-0:sorting with embedded nulls
->610063
->6100620062
->6100620061
->61006200
->610062
->6100
->61