tests/test-diffdir
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 15 Feb 2006 14:22:16 +0100
changeset 1723 fde8fb2cbede
parent 981 4f81068ed8cd
child 1933 7544700fd931
permissions -rwxr-xr-x
Fix diff against an empty file (issue124) and add a test for this.

#!/bin/sh

hg init
touch a
hg add a
hg ci -m "a" -d "0 0"

echo 123 > b
hg add b
hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
              -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"

hg diff -r tip | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
                     -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"

echo foo > a
hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
              -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"