summaryrefslogtreecommitdiff
path: root/t/interop
diff options
context:
space:
mode:
authorLibravatar Johannes Schindelin <johannes.schindelin@gmx.de>2019-03-13 13:24:12 +0100
committerLibravatar Junio C Hamano <gitster@pobox.com>2019-03-14 12:34:39 +0900
commit9f82b2a6a754c7cec37282d954208b4b429a3a05 (patch)
tree935af96b092769753a9c2ca5222ca40df5566e27 /t/interop
parenttest-lib: introduce 'test_atexit' (diff)
downloadtgif-9f82b2a6a754c7cec37282d954208b4b429a3a05.tar.xz
git-daemon: use 'test_atexit` to stop 'git-daemon'
Use 'test_atexit' to run cleanup commands to stop 'git-daemon' at the end of the test script or upon interrupt or failure, as it is shorter, simpler, and more robust than registering such cleanup commands in the trap on EXIT in the test scripts. Note that in 't5570-git-daemon.sh' the daemon is stopped and then re-started in the middle of the test script; take care that the cleanup functions to stop the daemon are only registered once. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/interop')
-rwxr-xr-xt/interop/i5500-git-daemon.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/t/interop/i5500-git-daemon.sh b/t/interop/i5500-git-daemon.sh
index 1daf69420b..4d22e42f84 100755
--- a/t/interop/i5500-git-daemon.sh
+++ b/t/interop/i5500-git-daemon.sh
@@ -37,5 +37,4 @@ test_expect_success "fetch with $VERSION_B" '
test_cmp expect actual
'
-stop_git_daemon
test_done