sapling/eden/scm/tests/test-rebase-missing-cwd.t
Jun Wu 41dd58675e tests: migrate some tests to use mutation
Summary:
Change `configure evolution` to `configure mutation-norecord`.
The tests pass without further modification.

Reviewed By: sfilipco

Differential Revision: D21913598

fbshipit-source-id: 93ac6ce21fb87482a388508f151520f4e6f0bd31
2020-06-10 19:29:59 -07:00

42 lines
772 B
Perl

#chg-compatible
$ configure mutation-norecord
#require rmcwd
Ensure that dirsync does not cause an abort when cwd goes missing
$ enable rebase dirsync
$ setconfig phases.publish=False
$ newrepo
$ drawdag <<'EOF'
> change # change/a = a
> |
> | delete # delete/dir/a = (removed)
> | /
> base # base/dir/a = a
> EOF
$ hg co -q $change
$ cd dir
$ hg rebase -s . -d $delete
rebasing 6f52fdb3a577 "change"
current directory was removed
(consider changing to repo root: $TESTTMP/repo1)
$ cd -
$TESTTMP/repo1
$ hg status
$ hg log -Gr ":" -T "{node|short} {desc}"
@ 74e7da63e173 change
|
o 5f45087392e8 delete
|
o aa6caddcd04f base
$ hg rebase --abort
abort: no rebase in progress
[255]