##// END OF EJS Templates
Do not use osutil.c with python 2.4 and Windows (issue1364)...
Do not use osutil.c with python 2.4 and Windows (issue1364) Windows python 2.4 os.stat() reports times including DST offset, while osutil.c reports the correct value, which makes status() systematically compare files content. This bug is fixed in python 2.5. Using osutil.py instead of osutil.c is 4x times slower on large repositories but current code is completely unusable. Given few people are likely to use python 2.4 on Windows this solution was considered a good trade-off compared to more invasive solutions trying to address the offset issue.

File last commit:

r7080:a6477aa8 default
r10521:bde1bb25 stable
Show More
test-merge-symlinks
46 lines | 986 B | text/plain | TextLexer
/ tests / test-merge-symlinks
Patrick Mezard
Test *_ISLINK merge environment vars
r5391 #!/bin/sh
cat > echo.py <<EOF
#!/usr/bin/env python
Patrick Mezard
tests: Windows compatibility fixes...
r7080 import os, sys
try:
import msvcrt
msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
msvcrt.setmode(sys.stderr.fileno(), os.O_BINARY)
except ImportError:
pass
Patrick Mezard
Test workingctx exec/link bit for copies....
r5408 for k in ('HG_FILE', 'HG_MY_ISLINK', 'HG_OTHER_ISLINK', 'HG_BASE_ISLINK'):
Patrick Mezard
Test *_ISLINK merge environment vars
r5391 print k, os.environ[k]
EOF
# Create 2 heads containing the same file, once as
Patrick Mezard
Test workingctx exec/link bit for copies....
r5408 # a file, once as a link. Bundle was generated with:
#
# hg init t
# cd t
# echo a > a
# hg ci -qAm t0 -d '0 0'
# echo l > l
# hg ci -qAm t1 -d '1 0'
# hg up -C 0
# ln -s a l
# hg ci -qAm t2 -d '2 0'
# echo l2 > l2
# hg ci -qAm t3 -d '3 0'
Patrick Mezard
Test *_ISLINK merge environment vars
r5391 hg init t
cd t
Patrick Mezard
Test workingctx exec/link bit for copies....
r5408 hg -q pull "$TESTDIR/test-merge-symlinks.hg"
hg up -C 3
Patrick Mezard
Test *_ISLINK merge environment vars
r5391
# Merge them and display *_ISLINK vars
echo % merge heads
Patrick Mezard
Test workingctx exec/link bit for copies....
r5408 HGMERGE="python ../echo.py" hg merge
# Test working directory symlink bit calculation wrt copies,
# especially on non-supporting systems.
echo % merge working directory
hg up -C 2
hg copy l l2
HGMERGE="python ../echo.py" hg up 3