Mercurial > hg
changeset 12121:8f258dd4ed02
tests: unify test-rebuildstate
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Mon, 30 Aug 2010 18:47:02 +0900 |
parents | aeef24027906 |
children | 9bab9ee901e8 |
files | tests/test-bisect.t tests/test-churn.t tests/test-impexp-branch.t tests/test-incoming-outgoing.t tests/test-inherit-mode.t tests/test-rebuildstate tests/test-rebuildstate.out tests/test-rebuildstate.t tests/test-relink.t tests/test-remove-new.t tests/test-remove.t tests/test-rename-dir-merge.t tests/test-rename.t tests/test-requires.t tests/test-resolve.t tests/test-revert-flags.t tests/test-revert-unknown.t tests/test-revert.t tests/test-revset.t tests/test-strict.t tests/test-up-local-change.t |
diffstat | 3 files changed, 29 insertions(+), 28 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-rebuildstate Mon Aug 30 14:16:56 2010 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -#!/bin/sh -# basic test for hg debugrebuildstate - -hg init repo -cd repo - -touch foo bar -hg ci -Am 'add foo bar' - -touch baz -hg add baz -hg rm bar - -hg debugrebuildstate -echo '% state dump after' -hg debugstate --nodates | sort -echo '% status' -hg st -A -
--- a/tests/test-rebuildstate.out Mon Aug 30 14:16:56 2010 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,9 +0,0 @@ -adding bar -adding foo -% state dump after -n 666 -1 bar -n 666 -1 foo -% status -! bar -? baz -C foo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-rebuildstate.t Mon Aug 30 18:47:02 2010 +0900 @@ -0,0 +1,29 @@ +basic test for hg debugrebuildstate + + $ hg init repo + $ cd repo + + $ touch foo bar + $ hg ci -Am 'add foo bar' + adding bar + adding foo + + $ touch baz + $ hg add baz + $ hg rm bar + + $ hg debugrebuildstate + +state dump after + + $ hg debugstate --nodates | sort + n 666 -1 bar + n 666 -1 foo + +status + + $ hg st -A + ! bar + ? baz + C foo +