test-encode: Use tr chacter classes instead of character ranges stable
authorMads Kiilerich <mads@kiilerich.com>
Sat, 23 Jan 2010 02:03:42 +0100
branchstable
changeset 10279 1c4ab236ebcb
parent 10277 17c6d5eab25d
child 10280 21b3346ce3c7
child 10283 2ae7f001b61d
test-encode: Use tr chacter classes instead of character ranges Solaris ...
tests/test-encode
--- a/tests/test-encode	Sat Jan 23 16:54:53 2010 +0100
+++ b/tests/test-encode	Sat Jan 23 02:03:42 2010 +0100
@@ -4,11 +4,11 @@
 
 cat > .hg/hgrc <<EOF
 [encode]
-not.gz = tr a-z A-Z
+not.gz = tr [:lower:] [:upper:]
 *.gz = gzip -d
 
 [decode]
-not.gz = tr A-Z a-z
+not.gz = tr [:upper:] [:lower:]
 *.gz = gzip
 
 EOF