tests/test-diff-color
author Martin Geisler <mg@lazybytes.net>
Sun, 26 Apr 2009 14:49:49 +0200
changeset 8168 8766fee6f225
parent 7458 03dd55115985
child 9579 c06e7581bbaa
permissions -rwxr-xr-x
tests: removed redundant "-u test" from test scripts The tests are executed with a .hgrc file which adds "-u test" by default.

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "color=" >> $HGRCPATH

hg init repo
cd repo
cat > a <<EOF
c
c
a
a
b
a
a
c
c
EOF
hg ci -Am adda
cat > a <<EOF
c
c
a
a
dd
a
a
c
c
EOF

echo '% default context'
hg diff --nodates --color=always

echo '% --unified=2'
hg diff --nodates -U 2  --color=always