sapling/tests/test-fb-hgext-treedirstate-nonnormalset.t
Jun Wu 840d98a378 testcodemod: clean up some "hgext3rd" references
Summary: Tests should not refer to hgext3rd directly.

Test Plan: Ran tests.

Reviewers: durham, #mercurial

Reviewed By: durham

Subscribers: durham

Differential Revision: https://phabricator.intern.facebook.com/D6698786

Signature: 6698786:1515632845:9a63120fb13eab17f268facd2be9b374506f665c
2018-01-10 15:36:54 -08:00

32 lines
670 B
Perl

Copy of test-dirstate-nonnormalsets.t for treedirstate
$ cat >> $HGRCPATH <<EOF
> [extensions]
> 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