Mercurial > hg-stable
view tests/test-mq-symlinks @ 6761:cb981fc955fb
remove: work directly off status
This allows us to use a single directory walk and to trivially ignore
unknown files. The resulting code is also easier to follow.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 27 Jun 2008 14:53:30 -0500 |
parents | 95413879bac9 |
children | 49f34b43cf90 |
line wrap: on
line source
#!/bin/sh "$TESTDIR/hghave" symlink || exit 80 echo "[extensions]" >> $HGRCPATH echo "mq=" >> $HGRCPATH hg init hg qinit hg qnew base.patch echo a > a echo b > b hg add a b hg qrefresh $TESTDIR/readlink.py a hg qnew symlink.patch rm a ln -s b a hg qrefresh --git $TESTDIR/readlink.py a hg qpop hg qpush $TESTDIR/readlink.py a