sapling/tests/test-fb-hgext-backup.t
Kostia Balytskyi b27a46c987 fb-hgext: fix copied fb-hgext tests
Summary:
This is a big bulk of generally almost-obvious fixes to the moved tests. Mostly
these fixes have to do with correct importing of the actual extensions.

Depends on D6675329

Test Plan:
- ./run-tests.py fails less after this commit
- see further commits for more test fixes

Reviewers: #sourcecontrol

Differential Revision: https://phabricator.intern.facebook.com/D6675344
2018-01-09 03:06:09 -08:00

50 lines
1.2 KiB
Perl

$ cat >> $HGRCPATH << EOF
> [extensions]
> backups=
> strip=
> EOF
Setup repo
$ hg init repo
$ cd repo
Test backups list and recover
$ mkcommit() {
> echo "$1" > "$1"
> hg add "$1"
> hg ci -l $1
> }
$ mkcommit a
$ mkcommit b
$ hg strip .
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
saved backup bundle to $TESTTMP/repo/.hg/strip-backup/d2ae7f538514-2953539b-backup.hg (glob)
$ hg backups
Recover changesets using: hg backups --recover <changeset hash>
Available backup changesets:
* (glob)
d2ae7f538514 b
$ hg backups --config experimental.evolution=createmarkers
Marker creation is enabled so no changeset should be
* (glob)
stripped changesets. If you are trying to recover a changeset hidden from a
previous command, use hg journal to get its sha1 and you will be able to access
it directly without recovering a backup.
Recover changesets using: hg backups --recover <changeset hash>
Available backup changesets:
* (glob)
d2ae7f538514 b
$ hg backups --recover d2ae7f538514
Unbundling d2ae7f538514
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
new changesets d2ae7f538514