diff options
author | Joey Hess <joey@kitenet.net> | 2014-07-11 16:56:19 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-07-11 16:56:19 -0400 |
commit | 88a52a5c74e5035c33533c65819d284eb9d3ac5e (patch) | |
tree | d50627fb021c88efcb5a2908744798b1e0858eac /Test.hs | |
parent | 2a727e8c5f8d003af7102ea7de22e45a5faec421 (diff) |
Deal with change in git 2.0 that made indirect mode merge conflict resolution leave behind old files.
I think this is a git behavior change, but have not checked to be sure.
Conflict cruft used to look like $foo~HEAD, but now just $foo is left
behind as conflict cruft.
With test case.
Diffstat (limited to 'Test.hs')
-rw-r--r-- | Test.hs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -857,6 +857,7 @@ test_conflict_resolution testenv = let v = filter (variantprefix `isPrefixOf`) l length v == 2 @? (what ++ " not exactly 2 variant files in: " ++ show l) + conflictor `notElem` l @? ("conflictor still present after conflict resolution") indir testenv d $ do git_annex testenv "get" v @? "get failed" git_annex_expectoutput testenv "find" v v |