ref_transaction_commit(): fix atomicity and avoid fd exhaustion
[gitweb.git] / t / t6021-merge-criss-cross.sh
index e8606c751d6236ea7109359910a8e8adc01eb627..d15b313d4b5e65bc583b7c1f0e4efbb5ac56cb00 100755 (executable)
@@ -3,8 +3,8 @@
 # Copyright (c) 2005 Fredrik Kuivinen
 #
 
-# See http://marc.theaimsgroup.com/?l=git&m=111463358500362&w=2 for a
-# nice decription of what this is about.
+# See http://marc.info/?l=git&m=111463358500362&w=2 for a
+# nice description of what this is about.
 
 
 test_description='Test criss-cross merge'
@@ -20,7 +20,7 @@ test_expect_success 'prepare repository' \
 7
 8
 9" > file &&
-git add file && 
+git add file &&
 git commit -m "Initial commit" file &&
 git branch A &&
 git branch B &&
@@ -89,4 +89,8 @@ EOF
 
 test_expect_success 'Criss-cross merge result' 'cmp file file-expect'
 
+test_expect_success 'Criss-cross merge fails (-s resolve)' \
+'git reset --hard A^ &&
+test_must_fail git merge -s resolve -m "final merge" B'
+
 test_done