diff options
author | Pavel Roskin <proski@gnu.org> | 2005-08-11 04:15:02 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-12 03:26:15 +0200 |
commit | da7bc9b081ad8e45c997678c4ab4e7da9cd335ed (patch) | |
tree | 3a477cdba339620d12d97ecd48b970cff84df869 /t/t4101-apply-nonl.sh | |
parent | String comparison of test is done with '=', not '=='. (diff) | |
download | git-da7bc9b081ad8e45c997678c4ab4e7da9cd335ed.tar.xz git-da7bc9b081ad8e45c997678c4ab4e7da9cd335ed.zip |
[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/t4101-apply-nonl.sh')
-rwxr-xr-x | t/t4101-apply-nonl.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t4101-apply-nonl.sh b/t/t4101-apply-nonl.sh index 380ef15a27..26b131d0d5 100755 --- a/t/t4101-apply-nonl.sh +++ b/t/t4101-apply-nonl.sh @@ -30,3 +30,5 @@ do "git-apply <diff.$i-$j && diff frotz.$j frotz" done done + +test_done |