diff options
author | Pavel Roskin <proski@gnu.org> | 2005-08-10 22:15:02 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-11 18:26:15 -0700 |
commit | da7bc9b081ad8e45c997678c4ab4e7da9cd335ed (patch) | |
tree | 3a477cdba339620d12d97ecd48b970cff84df869 /t/t5400-send-pack.sh | |
parent | 8e832ebce61e6b82c7187365cbf12b2ef614c188 (diff) | |
download | git-da7bc9b081ad8e45c997678c4ab4e7da9cd335ed.tar.gz git-da7bc9b081ad8e45c997678c4ab4e7da9cd335ed.tar.xz |
[PATCH] Missing test_done
All test scripts should end with test_done, which reports the test
results. In the future, it could be used for other purposes, e.g. to
distinguish graceful end from "exit" in a test. This patch fixes
scripts that don't call test_done.
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t5400-send-pack.sh')
-rwxr-xr-x | t/t5400-send-pack.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t5400-send-pack.sh b/t/t5400-send-pack.sh index 19a8f122c..a362c6ebe 100755 --- a/t/t5400-send-pack.sh +++ b/t/t5400-send-pack.sh @@ -52,3 +52,5 @@ test_expect_success \ git-send-pack --force ./victim/.git/ master && cmp victim/.git/refs/heads/master .git/refs/heads/master ' + +test_done |