##// END OF EJS Templates
Update on pull -u when heads were closed (fixes issue666)....
Update on pull -u when heads were closed (fixes issue666). Patch written by Benoit Boissinot. This should probably be improved in the future to handle long-living branches, as joining two "other" heads will switch to that new head. But this is not a new problem, as adding to the "other" head would have switched to that new head, too.

File last commit:

r4882:25d753ef default
r5080:73fdc8bd default
Show More
test-symlink-basic
53 lines | 919 B | text/plain | TextLexer
/ tests / test-symlink-basic
Alexis S. L. Carvalho
Add some tests for symlink tracking
r4274 #!/bin/sh
Patrick Mezard
test-symlink-basic: require symlinks availability
r4882 "$TESTDIR/hghave" symlink || exit 80
Alexis S. L. Carvalho
commands.commit: symlinks are supported
r4572 cleanpath()
{
sed -e "s:/.*\(/test-symlink-basic/.*\):...\1:"
}
Alexis S. L. Carvalho
Add some tests for symlink tracking
r4274 cat >> readlink.py <<EOF
import os
import sys
for f in sys.argv[1:]:
print f, '->', os.readlink(f)
EOF
hg init a
cd a
ln -s nothing dangling
Alexis S. L. Carvalho
commands.commit: symlinks are supported
r4572 hg commit -m 'commit symlink without adding' -d '0 0' dangling 2>&1 | cleanpath
Alexis S. L. Carvalho
Add some tests for symlink tracking
r4274 hg add dangling
hg commit -m 'add symlink' -d '0 0'
hg tip -v
hg manifest --debug
echo '% rev 0:'
python ../readlink.py dangling
rm dangling
ln -s void dangling
hg commit -m 'change symlink'
echo '% rev 1:'
python ../readlink.py dangling
echo '% modifying link'
rm dangling
ln -s empty dangling
python ../readlink.py dangling
echo '% reverting to rev 0:'
hg revert -r 0 -a
python ../readlink.py dangling
echo '% backups:'
python ../readlink.py *.orig
rm *.orig
hg up -C
echo '% copies'
hg cp -v dangling dangling2
hg st -Cmard
python ../readlink.py dangling dangling2