sapling/eden/scm/tests/test-amend-previous.t
Zeyi (Rice) Fan 92f6f35e7a mark all tests requiring Python 2
Summary:
This diff marks **ALL** mercurial tests requiring Python 2 feature.

After you fixes some tests, simply remove the `py2` feature requirement and that tests will be continuously run after your diff is landed.

To bypass this feature requirement, run the tests command with `HGTEST_FORCE_PY2=1`. For example:

```
HGTEST_FORCE_PY2=1 buck test //eden/scm/tests:hg_run_tests
```

or

```
HGTEST_FORCE_PY2=1 python run-tests.py
```

----

Basically this diff are created with the following commands:

```
$ sed -i 's/import feature\(.*\)$/import feature\1\n\nfeature.require(["py2"])/' test-*-t.py
$ sed -i '1s/^/#require py2\n/' test-*.t
$ ls | grep -P "^test.*(?<\!-t)\.py$" > list && vim -p $(cat list)
# manually adding feature requires for these Python tests.
```

(Note: this ignores all push blocking failures!)

ignore-conflict-markers

Reviewed By: singhsrb

Differential Revision: D19655148

fbshipit-source-id: 985e3ccb4010cc559049f1d89f8909bc2d9b5e20
2020-01-30 18:49:21 -08:00

135 lines
4.0 KiB
Perl

#require py2
#chg-compatible
Set up test environment.
$ configure mutation-norecord
$ enable amend rebase
$ setconfig ui.disallowemptyupdate=true
$ newrepo 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