提交 7a0cf2d0 编写于 作者: M Martin Waitz 提交者: Junio C Hamano

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: NMartin Waitz <tali@admingilde.org>
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 3de63c3f
......@@ -135,6 +135,7 @@ test_expect_failure () {
else
test_failure_ "$@"
fi
echo >&3 ""
}
test_expect_success () {
......@@ -148,6 +149,7 @@ test_expect_success () {
else
test_failure_ "$@"
fi
echo >&3 ""
}
test_expect_code () {
......@@ -161,6 +163,7 @@ test_expect_code () {
else
test_failure_ "$@"
fi
echo >&3 ""
}
# Most tests can use the created repository, but some amy need to create more.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册