sapling/eden/scm/tests/test-amend-previous.t
Adam Simpkins ab3a7cb21f Move fb-mercurial sources into an eden/scm subdirectory.
Summary:
In preparation for merging fb-mercurial sources to the Eden repository,
move everything from the top-level directory into an `eden/scm`
subdirectory.
2019-11-13 16:04:48 -08:00

138 lines
4.0 KiB
Perl

Set up test environment.
$ cat >> $HGRCPATH << EOF
> [extensions]
> amend=
> rebase=
> [experimental]
> evolution = createmarkers
> [ui]
> disallowemptyupdate = True
> EOF
$ hg init amendprevious && cd amendprevious
Check help text for new options and removal of unsupported options.
$ hg previous --help
hg previous [OPTIONS]... [STEPS]
aliases: prev
check out the parent commit
Options:
--newest always pick the newest parent when a changeset has
multiple parents
--bottom update to the lowest non-public ancestor of the
current changeset
--bookmark update to the first ancestor with a bookmark
--no-activate-bookmark do not activate the bookmark on the destination
changeset
-C --clean discard uncommitted changes (no backup)
-B --move-bookmark move active bookmark
-m --merge merge uncommitted changes
(some details hidden, use --verbose to show complete help)
Create stack of commits and go to the top.
$ hg debugbuilddag --mergeable-file +6
$ hg up tip
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg book top
Test invalid argument combinations.
$ hg previous --bottom 1
abort: cannot use both number and --bottom
[255]
$ hg previous --bookmark 1
abort: cannot use both number and --bookmark
[255]
$ hg previous --bottom --bookmark
abort: cannot use both --bottom and --bookmark
[255]
Test basic usage.
$ hg previous
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(leaving bookmark top)
[*] r4 (glob)
With positional argument.
$ hg previous 2
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
[*] r2 (glob)
Overshoot bottom of repo.
$ hg previous 5
reached root changeset
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
[*] r0 (glob)
Test --bottom flag.
$ hg up top
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(activating bookmark top)
$ hg previous --bottom
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(leaving bookmark top)
[*] r0 (glob)
Test bookmark navigation.
$ hg book -r 0 root
$ hg book -r 2 bookmark
$ hg up top
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(activating bookmark top)
$ hg previous --bookmark
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(leaving bookmark top)
[*] (bookmark) r2 (glob)
(activating bookmark bookmark)
$ hg previous --bookmark
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(leaving bookmark bookmark)
[*] (root) r0 (glob)
(activating bookmark root)
Test bookmark activation.
$ hg up top
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(activating bookmark top)
$ hg previous 3
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(leaving bookmark top)
[*] (bookmark) r2 (glob)
(activating bookmark bookmark)
$ hg previous 2 --no-activate-bookmark
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(leaving bookmark bookmark)
[*] (root) r0 (glob)
Test dirty working copy and --merge.
$ hg up top
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(activating bookmark top)
$ echo "test" >> mf
$ hg st
M mf
$ hg previous
abort: uncommitted changes
(use --clean to discard uncommitted changes or --merge to bring them along)
[255]
$ hg previous --merge
merging mf
0 files updated, 1 files merged, 0 files removed, 0 files unresolved
(leaving bookmark top)
[*] r4 (glob)
$ hg st
M mf
Test dirty working copy and --clean.
$ hg previous
abort: uncommitted changes
(use --clean to discard uncommitted changes or --merge to bring them along)
[255]
$ hg previous --clean
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
[*] r3 (glob)
$ hg st