Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
notes: add tests for --commit/--abort/--strategy exclusivity
author
Jacob Keller
<jacob.keller@gmail.com>
Mon, 17 Aug 2015 21:33:32 +0000
(14:33 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 17 Aug 2015 22:38:37 +0000
(15:38 -0700)
Add new tests to ensure that --commit, --abort, and --strategy are
mutually exclusive.
Signed-off-by: Jacob Keller <jacob.keller@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3310-notes-merge-manual-resolve.sh
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
93efcad
)
diff --git
a/t/t3310-notes-merge-manual-resolve.sh
b/t/t3310-notes-merge-manual-resolve.sh
index 195bb97f859d6a4990c292da46b9674be0f6153f..d5572121da69a90ffb1010b6136c3c1fa9fe07f2 100755
(executable)
--- a/
t/t3310-notes-merge-manual-resolve.sh
+++ b/
t/t3310-notes-merge-manual-resolve.sh
@@
-314,6
+314,18
@@
y and z notes on 1st commit
EOF
EOF
+test_expect_success 'do not allow mixing --commit and --abort' '
+ test_must_fail git notes merge --commit --abort
+'
+
+test_expect_success 'do not allow mixing --commit and --strategy' '
+ test_must_fail git notes merge --commit --strategy theirs
+'
+
+test_expect_success 'do not allow mixing --abort and --strategy' '
+ test_must_fail git notes merge --abort --strategy theirs
+'
+
test_expect_success 'finalize conflicting merge (z => m)' '
# Resolve conflicts and finalize merge
cat >.git/NOTES_MERGE_WORKTREE/$commit_sha1 <<EOF &&
test_expect_success 'finalize conflicting merge (z => m)' '
# Resolve conflicts and finalize merge
cat >.git/NOTES_MERGE_WORKTREE/$commit_sha1 <<EOF &&