diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2019-03-13 13:24:12 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-03-14 12:34:39 +0900 |
commit | 9f82b2a6a754c7cec37282d954208b4b429a3a05 (patch) | |
tree | 935af96b092769753a9c2ca5222ca40df5566e27 /t/interop | |
parent | test-lib: introduce 'test_atexit' (diff) | |
download | tgif-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-x | t/interop/i5500-git-daemon.sh | 1 |
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 |