##// END OF EJS Templates
transplant: only pull the transplanted revision (issue4692)...
transplant: only pull the transplanted revision (issue4692) For some reason, transplant was pulling all remote revisions when transplanting from a remote repository (unless --branch was specified).

File last commit:

r21274:3b4c7569 default
r25679:540cd0dd 3.4.2 stable
Show More
test-journal-exists.t
37 lines | 805 B | text/troff | Tads3Lexer
/ tests / test-journal-exists.t
Adrian Buehlmann
tests: unify test-journal-exists
r12205 $ hg init
$ echo a > a
$ hg ci -Am0
adding a
$ hg -q clone . foo
$ touch .hg/store/journal
$ echo foo > a
$ hg ci -Am0
Johan Bjork
journal: set Abort hint when failing due to an abandoned transaction
r21274 abort: abandoned transaction found!
(run 'hg recover' to clean up transaction)
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
tests: unify test-journal-exists
r12205
$ hg recover
rolling back interrupted transaction
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
1 files, 1 changesets, 1 total revisions
Check that zero-size journals are correctly aborted:
Matt Mackall
tests: skip tests that require not having root (issue4089)...
r20008 #if unix-permissions no-root
Adrian Buehlmann
tests: unify test-journal-exists
r12205 $ hg bundle -qa repo.hg
$ chmod -w foo/.hg/store/00changelog.i
$ hg -R foo unbundle repo.hg
adding changesets
Mads Kiilerich
tests: remove redundant globs...
r12640 abort: Permission denied: $TESTTMP/foo/.hg/store/.00changelog.i-* (glob)
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
tests: unify test-journal-exists
r12205
$ if test -f foo/.hg/store/journal; then echo 'journal exists :-('; fi
Adrian Buehlmann
test-journal-exists: use #if
r16959 #endif
Adrian Buehlmann
tests: unify test-journal-exists
r12205