sapling/tests/test-fb-hgext-treedirstate-nonnormalset.t

32 lines
670 B
Perl
Raw Normal View History

Copy of test-dirstate-nonnormalsets.t for treedirstate
$ cat >> $HGRCPATH <<EOF
> [extensions]
2018-01-10 03:55:34 +03:00
> treedirstate=
> [treedirstate]
> useinnewrepos=True
> EOF
$ cat >> $HGRCPATH << EOF
> [ui]
> logtemplate="{rev}:{node|short} ({phase}) [{tags} {bookmarks}] {desc|firstline}\n"
> [extensions]
> dirstateparanoidcheck = $RUNTESTDIR/../contrib/dirstatenonnormalcheck.py
> [experimental]
> nonnormalparanoidcheck = True
> [devel]
> all-warnings=True
> EOF
$ mkcommit() {
> echo "$1" > "$1"
> hg add "$1"
> hg ci -m "add $1"
> }
$ hg init testrepo
$ cd testrepo
$ mkcommit a
$ mkcommit b
$ mkcommit c
$ hg status