changeset 10279:1c4ab236ebcb stable

test-encode: Use tr chacter classes instead of character ranges Solaris ...
author Mads Kiilerich <mads@kiilerich.com>
date Sat, 23 Jan 2010 02:03:42 +0100
parents 17c6d5eab25d
children 21b3346ce3c7 2ae7f001b61d
files tests/test-encode
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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