##// END OF EJS Templates
Test a merge of a symlink against an executable file....
Test a merge of a symlink against an executable file. This should result in a conflict, but the symlink always wins.

File last commit:

r5503:6f26c767 default
r5503:6f26c767 default
Show More
test-merge-types
36 lines | 471 B | text/plain | TextLexer
Bryan O'Sullivan
Test a merge of a symlink against an executable file....
r5503 #!/bin/sh
hg init
echo a > a
hg ci -Amadd
chmod +x a
hg ci -mexecutable
hg up 0
rm a
ln -s symlink a
hg ci -msymlink
hg merge
echo % symlink is left parent, executable is right
if [ -L a ]; then
echo a is a symlink
readlink a
elif [ -x a ]; then
echo a is executable
fi
hg update -C 1
hg merge
echo % symlink is right parent, executable is left
if [ -L a ]; then
echo a is a symlink
readlink a
elif [ -x a ]; then
echo a is executable
fi