Mercurial > evolve
view tests/test-amend-merge.t @ 6848:e823d9117a68
tests: further relax the number of files check in test-check-sdist.t
A previous patch bumped this number due to a different version of setuptools or
distutils or some other package that we don't control, which made it pretty
obvious that this check is not really practical. We need a better way to check
that all needed files are present in the tarball.
I have some ideas, but this patch can be applied without further waiting, and
it'll already bring the benefit of not annoying developers or contributors
while at the same time still keeping the test somewhat useful.
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Mon, 16 Sep 2024 17:22:23 +0400 |
parents | 2800aa3c3dbf |
children |
line wrap: on
line source
This test amends a merge commit using various commands, including topics $ . $TESTDIR/testlib/common.sh $ cat >> $HGRCPATH << EOF > [extensions] > evolve = > topic = > EOF $ hg init amending-a-merge $ cd amending-a-merge $ mkcommit root $ mkcommit apple $ hg up 'desc("root")' 0 files updated, 0 files merged, 1 files removed, 0 files unresolved $ mkcommit banana created new head (consider using topic for lightweight branches. See 'hg help topic') $ hg up 'desc("apple")' 1 files updated, 0 files merged, 1 files removed, 0 files unresolved $ hg merge 'desc("banana")' 1 files updated, 0 files merged, 0 files removed, 0 files unresolved (branch merge, don't forget to commit) $ hg ci -m merge $ hg log -r . -T '{rev}: {join(extras, " ")}\n' 3: branch=default $ hg diff -r 'p1(.)' -r '.' diff -r 88a060ab6523 -r c20705a6a8c4 banana --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/banana Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +banana $ hg diff -r 'p2(.)' -r '.' diff -r d8c7baf0ca58 -r c20705a6a8c4 apple --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apple Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +apple amend $ hg amend -m 'merge, amend' $ hg log -r . -T '{rev}: {join(extras, " ")}\n' 4: amend_source=[0-9a-f]+ branch=default (re) $ hg diff -r 'p1(.)' -r '.' diff -r 88a060ab6523 -r 456753fae3cd banana --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/banana Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +banana $ hg diff -r 'p2(.)' -r '.' diff -r d8c7baf0ca58 -r 456753fae3cd apple --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apple Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +apple metaedit $ hg metaedit -m 'merge, metaedit' 0 files updated, 0 files merged, 0 files removed, 0 files unresolved $ hg log -r . -T '{rev}: {join(extras, " ")}\n' 5: amend_source=[0-9a-f]+ branch=default (re) $ hg diff -r 'p1(.)' -r '.' diff -r 88a060ab6523 -r 1528d42f3e83 banana --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/banana Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +banana $ hg diff -r 'p2(.)' -r '.' diff -r d8c7baf0ca58 -r 1528d42f3e83 apple --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apple Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +apple topics $ hg topics -r . foo switching to topic foo changed topic on 1 changesets to "foo" $ hg log -r . -T '{rev}: {join(extras, " ")}\n' 6: _rewrite_noise=[0-9a-f]+ amend_source=[0-9a-f]+ branch=default topic=foo (re) $ hg diff -r 'p1(.)' -r '.' diff -r 88a060ab6523 -r 05be679ae1bd banana --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/banana Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +banana $ hg diff -r 'p2(.)' -r '.' diff -r d8c7baf0ca58 -r 05be679ae1bd apple --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apple Thu Jan 01 00:00:00 1970 +0000 @@ -0,0 +1,1 @@ +apple $ hg files apple banana root $ hg cat apple banana apple banana