Skip to content
Snippets Groups Projects
Commit 7a0cf2d0 authored by Martin Waitz's avatar Martin Waitz Committed by Junio C Hamano
Browse files

test-lib: separate individual test better in verbose mode.


When running tests with --verbose it is difficult to see where
one test starts and where it ends because everything is printed
in one big lump.
Fix that by printing one single newline between each test.

Signed-off-by: default avatarMartin Waitz <tali@admingilde.org>
Signed-off-by: default avatarJunio C Hamano <junkio@cox.net>
parent 3de63c3f
No related branches found
No related tags found
No related merge requests found
...@@ -135,6 +135,7 @@ test_expect_failure () { ...@@ -135,6 +135,7 @@ test_expect_failure () {
else else
test_failure_ "$@" test_failure_ "$@"
fi fi
echo >&3 ""
} }
test_expect_success () { test_expect_success () {
...@@ -148,6 +149,7 @@ test_expect_success () { ...@@ -148,6 +149,7 @@ test_expect_success () {
else else
test_failure_ "$@" test_failure_ "$@"
fi fi
echo >&3 ""
} }
test_expect_code () { test_expect_code () {
...@@ -161,6 +163,7 @@ test_expect_code () { ...@@ -161,6 +163,7 @@ test_expect_code () {
else else
test_failure_ "$@" test_failure_ "$@"
fi fi
echo >&3 ""
} }
# Most tests can use the created repository, but some amy need to create more. # Most tests can use the created repository, but some amy need to create more.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment