Mercurial > hg
view tests/test-dispatch @ 11800:88c3ff051270
tests: unify test-transplant
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Thu, 12 Aug 2010 22:14:19 +0900 |
parents | 423ece53380e |
children | 21984c1c83d4 |
line wrap: on
line source
#!/bin/sh # test command parsing and dispatch "$TESTDIR/hghave" no-outer-repo || exit 80 dir=`pwd` hg init a cd a echo a > a hg ci -Ama echo "# missing arg" hg cat echo '% [defaults]' hg cat a cat >> $HGRCPATH <<EOF [defaults] cat = -r null EOF hg cat a echo '% working directory removed' sh -c "cd $dir && rm -rf a" hg --version 2>&1 | sed -e 's,\(abort:.*:\).*$,\1 ...,g' echo '% no repo' cd $dir hg cat exit 0