##// END OF EJS Templates
Use test -h instead of test -L for portability...
Use test -h instead of test -L for portability Citing from the GNU autoconf manual: "either form conforms to Posix 1003.1-2001, but older shells like Solaris 8 /bin/sh support only -h"

File last commit:

r5157:f6c520fd default
r5682:048889f8 default
Show More
test-mq-symlinks
34 lines | 512 B | text/plain | TextLexer
#!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
cat >> readlink.py <<EOF
import errno, os, sys
for f in sys.argv[1:]:
try:
print f, '->', os.readlink(f)
except OSError, err:
if err.errno != errno.EINVAL: raise
print f, 'not a symlink'
EOF
hg init
hg qinit
hg qnew base.patch
echo a > a
echo b > b
hg add a b
hg qrefresh
python readlink.py a
hg qnew symlink.patch
rm a
ln -s b a
hg qrefresh --git
python readlink.py a
hg qpop
hg qpush
python readlink.py a