##// END OF EJS Templates
templater: fix ifcontains when list is a string (issue4399)
templater: fix ifcontains when list is a string (issue4399)

File last commit:

r21947:b081decd stable
r22843:b6531d80 stable
Show More
test-resolve.t
63 lines | 1.2 KiB | text/troff | Tads3Lexer
Nicolas Dumazet
tests: unify test-resolve
r12117 test that a commit clears the merge state.
$ hg init repo
$ cd repo
$ echo foo > file
$ hg commit -Am 'add file'
adding file
$ echo bar >> file
$ hg commit -Am 'append bar'
create a second head
$ hg up -C 0
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ echo baz >> file
$ hg commit -Am 'append baz'
created new head
failing merge
Steve Borho
merge: implement --tool arguments using new ui.forcemerge configurable...
r12788 $ hg merge --tool=internal:fail
Nicolas Dumazet
tests: unify test-resolve
r12117 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
Brodie Rao
merge: suggest 'hg up -C .' for discarding changes, not 'hg up -C'...
r12314 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
Matt Mackall
tests: add exit codes to unified tests
r12316 [1]
Nicolas Dumazet
tests: unify test-resolve
r12117
Gregory Szorc
resolve: split test...
r21263 resolve -l should contain an unresolved entry
$ hg resolve -l
U file
Gregory Szorc
resolve: print warning when no work performed (issue4208)...
r21265 resolving an unknown path emits a warning
$ hg resolve -m does-not-exist
Matt Mackall
resolve: fix grammar of no matching files message
r21721 arguments do not match paths that need resolving
Gregory Szorc
resolve: print warning when no work performed (issue4208)...
r21265
Gregory Szorc
resolve: split test...
r21263 resolve the failure
Nicolas Dumazet
tests: unify test-resolve
r12117 $ echo resolved > file
$ hg resolve -m file
Pierre-Yves David
resolve: add parenthesis around "no more unresolved files" message...
r21947 (no more unresolved files)
Nicolas Dumazet
tests: unify test-resolve
r12117 $ hg commit -m 'resolved'
Siddharth Agarwal
resolve: don't abort resolve -l even when no merge is in progress...
r21541 resolve -l should be empty
Nicolas Dumazet
tests: unify test-resolve
r12117
$ hg resolve -l
Siddharth Agarwal
resolve: don't abort resolve -l even when no merge is in progress...
r21541
resolve -m should abort since no merge in progress
$ hg resolve -m
Gregory Szorc
resolve: abort when not applicable (BC)...
r21264 abort: resolve command not applicable when not merging
[255]
Nicolas Dumazet
tests: unify test-resolve
r12117
test crashed merge with empty mergestate
$ mkdir .hg/merge
$ touch .hg/merge/state
resolve -l, should be empty
$ hg resolve -l
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..