Skip to content

Commit

Permalink
t7600 (merge): do not launch gitk for --debug
Browse files Browse the repository at this point in the history
Probably as a development aid, this test script runs gitk --all
to allow the driver to inspect history between tests when run
with --debug.  As a result, running all tests with --debug
requires closing a long series of gitk displays, one at a time.

Use git log --graph --oneline instead.  This way, the history is
available for viewing with "git show" but the test script finishes
without interaction.

Longer term, it would be nice to have an option to run a
user-specified command between tests.  This patch does not do
that.

Cc: Lars Hjemli <hjemli@gmail.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jonathan Nieder authored and Junio C Hamano committed Aug 18, 2010
1 parent 4c07345 commit df516fb
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions t/t7600-merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ test_expect_success 'setup' '
create_merge_msgs
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'test option parsing' '
test_must_fail git merge -$ c1 &&
Expand All @@ -155,7 +155,7 @@ test_expect_success 'merge c0 with c1' '
verify_head "$c1"
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c0 with c1 with --ff-only' '
git reset --hard c0 &&
Expand All @@ -165,7 +165,7 @@ test_expect_success 'merge c0 with c1 with --ff-only' '
verify_head "$c1"
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2' '
git reset --hard c1 &&
Expand All @@ -175,7 +175,7 @@ test_expect_success 'merge c1 with c2' '
verify_parents $c1 $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 and c3' '
git reset --hard c1 &&
Expand All @@ -185,7 +185,7 @@ test_expect_success 'merge c1 with c2 and c3' '
verify_parents $c1 $c2 $c3
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'failing merges with --ff-only' '
git reset --hard c1 &&
Expand All @@ -202,7 +202,7 @@ test_expect_success 'merge c0 with c1 (no-commit)' '
verify_head $c1
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 (no-commit)' '
git reset --hard c1 &&
Expand All @@ -212,7 +212,7 @@ test_expect_success 'merge c1 with c2 (no-commit)' '
verify_mergeheads $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 and c3 (no-commit)' '
git reset --hard c1 &&
Expand All @@ -222,7 +222,7 @@ test_expect_success 'merge c1 with c2 and c3 (no-commit)' '
verify_mergeheads $c2 $c3
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c0 with c1 (squash)' '
git reset --hard c0 &&
Expand All @@ -233,7 +233,7 @@ test_expect_success 'merge c0 with c1 (squash)' '
test_cmp squash.1 .git/SQUASH_MSG
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c0 with c1 (squash, ff-only)' '
git reset --hard c0 &&
Expand All @@ -244,7 +244,7 @@ test_expect_success 'merge c0 with c1 (squash, ff-only)' '
test_cmp squash.1 .git/SQUASH_MSG
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 (squash)' '
git reset --hard c1 &&
Expand All @@ -255,14 +255,14 @@ test_expect_success 'merge c1 with c2 (squash)' '
test_cmp squash.1-5 .git/SQUASH_MSG
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'unsuccesful merge of c1 with c2 (squash, ff-only)' '
git reset --hard c1 &&
test_must_fail git merge --squash --ff-only c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 and c3 (squash)' '
git reset --hard c1 &&
Expand All @@ -273,7 +273,7 @@ test_expect_success 'merge c1 with c2 and c3 (squash)' '
test_cmp squash.1-5-9 .git/SQUASH_MSG
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 (no-commit in config)' '
git reset --hard c1 &&
Expand All @@ -284,7 +284,7 @@ test_expect_success 'merge c1 with c2 (no-commit in config)' '
verify_mergeheads $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 (squash in config)' '
git reset --hard c1 &&
Expand All @@ -296,7 +296,7 @@ test_expect_success 'merge c1 with c2 (squash in config)' '
test_cmp squash.1-5 .git/SQUASH_MSG
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'override config option -n with --summary' '
git reset --hard c1 &&
Expand Down Expand Up @@ -326,7 +326,7 @@ test_expect_success 'override config option -n with --stat' '
fi
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'override config option --stat' '
git reset --hard c1 &&
Expand All @@ -342,7 +342,7 @@ test_expect_success 'override config option --stat' '
fi
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 (override --no-commit)' '
git reset --hard c1 &&
Expand All @@ -353,7 +353,7 @@ test_expect_success 'merge c1 with c2 (override --no-commit)' '
verify_parents $c1 $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c2 (override --squash)' '
git reset --hard c1 &&
Expand All @@ -364,7 +364,7 @@ test_expect_success 'merge c1 with c2 (override --squash)' '
verify_parents $c1 $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c0 with c1 (no-ff)' '
git reset --hard c0 &&
Expand All @@ -375,7 +375,7 @@ test_expect_success 'merge c0 with c1 (no-ff)' '
verify_parents $c0 $c1
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'combining --squash and --no-ff is refused' '
test_must_fail git merge --squash --no-ff c1 &&
Expand Down Expand Up @@ -412,7 +412,7 @@ test_expect_success 'merge log message' '
test_cmp msg.log msg.act
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c0, c2, c0, and c1' '
git reset --hard c1 &&
Expand All @@ -423,7 +423,7 @@ test_expect_success 'merge c1 with c0, c2, c0, and c1' '
verify_parents $c1 $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c0, c2, c0, and c1' '
git reset --hard c1 &&
Expand All @@ -434,7 +434,7 @@ test_expect_success 'merge c1 with c0, c2, c0, and c1' '
verify_parents $c1 $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge c1 with c1 and c2' '
git reset --hard c1 &&
Expand All @@ -445,7 +445,7 @@ test_expect_success 'merge c1 with c1 and c2' '
verify_parents $c1 $c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge fast-forward in a dirty tree' '
git reset --hard c0 &&
Expand All @@ -455,7 +455,7 @@ test_expect_success 'merge fast-forward in a dirty tree' '
git merge c2
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'in-index merge' '
git reset --hard c0 &&
Expand All @@ -464,7 +464,7 @@ test_expect_success 'in-index merge' '
verify_parents $c0 $c1
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'refresh the index before merging' '
git reset --hard c1 &&
Expand Down Expand Up @@ -504,7 +504,7 @@ test_expect_success 'merge early part of c2' '
test_cmp expected.tag actual.tag
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'merge --no-ff --no-commit && commit' '
git reset --hard c0 &&
Expand All @@ -513,13 +513,13 @@ test_expect_success 'merge --no-ff --no-commit && commit' '
verify_parents $c0 $c1
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_expect_success 'amending no-ff merge commit' '
EDITOR=: git commit --amend &&
verify_parents $c0 $c1
'

test_debug 'gitk --all'
test_debug 'git log --graph --decorate --oneline --all'

test_done

0 comments on commit df516fb

Please sign in to comment.