# HG changeset patch # User Matt Mackall # Date 2007-12-28 04:27:43 # Node ID 32c2832682a9b03aab6257ce7cdfa0e8fc80f43c # Parent 9cedc3fbbebb5536782f3f3d0ab108eb5e26f839 add --debug to test-merge-types diff --git a/tests/test-merge-types b/tests/test-merge-types --- a/tests/test-merge-types +++ b/tests/test-merge-types @@ -2,19 +2,18 @@ hg init echo a > a -hg ci -Amadd +hg ci -Amadd # 0 chmod +x a -hg ci -mexecutable +hg ci -mexecutable # 1 hg up 0 rm a ln -s symlink a -hg ci -msymlink +hg ci -msymlink # 2 +hg merge --debug -hg merge - -echo % symlink is left parent, executable is right +echo % symlink is local parent, executable is other if [ -h a ]; then echo a is a symlink @@ -24,9 +23,9 @@ elif [ -x a ]; then fi hg update -C 1 -hg merge +hg merge --debug -echo % symlink is right parent, executable is left +echo % symlink is other parent, executable is local if [ -h a ]; then echo a is a symlink