tests/test-diffdir
author David Soria Parra <dsp@php.net>
Sat, 06 Dec 2008 16:15:59 +0100
changeset 7482 42cb14f20d76
parent 4180 f80cf8b7bbd9
permissions -rwxr-xr-x
bookmarks: Fix tests As we merge tags now with bookmarks we have add those tags to the tests.

#!/bin/sh

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

echo 123 > b
hg add b
hg diff --nodates

hg diff --nodates -r tip

echo foo > a
hg diff --nodates

hg diff -r ""
hg diff -r tip -r ""

true