Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2016-11-10 11:31:18 +0300
committerJunio C Hamano <gitster@pobox.com>2016-11-10 22:20:56 +0300
commitc1e0dc59bddce765761a6f863c66ee0cd4b2ca09 (patch)
treee3d777926f35f8f50701733c585e1f3aa625a10f /t
parent734fde2d7167e4b20d2ff6062ade3846949b0741 (diff)
t6026-merge-attr: ensure that the merge driver was called
Explicitly check for the existence of the pid file to test that the merge driver was actually called. Signed-off-by: Andreas Schwab <schwab@suse.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t6026-merge-attr.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t6026-merge-attr.sh b/t/t6026-merge-attr.sh
index 2672b15aa3..03d13d00b5 100755
--- a/t/t6026-merge-attr.sh
+++ b/t/t6026-merge-attr.sh
@@ -193,7 +193,8 @@ test_expect_success 'custom merge does not lock index' '
"* merge=ours" "text merge=sleep-one-second" &&
test_config merge.ours.driver true &&
test_config merge.sleep-one-second.driver ./sleep-one-second.sh &&
- git merge master
+ git merge master &&
+ test -f sleep.pid
'
test_done