##// END OF EJS Templates
Added signature for changeset 4a8d9ed86475
Added signature for changeset 4a8d9ed86475

File last commit:

r42320:013de80b default
r42324:e76eb64d stable
Show More
test-journal-exists.t
37 lines | 813 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
Meirambek Omyrzak
verify: make output less confusing (issue5924)...
r39525 checked 1 changesets with 1 changes to 1 files
Adrian Buehlmann
tests: unify test-journal-exists
r12205
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
Yuya Nishihara
dispatch: quote filename in IOError as well...
r41465 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