mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 14:10:42 +03:00
ffd341931d
This adds a test extension to check that the non-normal set contains the expected entries. It wraps several methods of the dirstate to check that the non-normal set has the correct values before and after the call. The extension lives in contrib so that paranoid developers can easily enable it to make sure that the non-normal set is consistent across more complex operations than the included tests.
23 lines
498 B
Perl
23 lines
498 B
Perl
$ cat >> $HGRCPATH << EOF
|
|
> [ui]
|
|
> logtemplate="{rev}:{node|short} ({phase}) [{tags} {bookmarks}] {desc|firstline}\n"
|
|
> [extensions]
|
|
> dirstateparanoidcheck = $TESTDIR/../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
|