Tests: fix the print summary for tests with dev profile.

When the dev profile is enabled, tests are also enabled if
libcheck is found. Fix the print in the summary to reflect
that.
This commit is contained in:
Tom Hacohen 2013-11-19 13:12:56 +00:00
parent bf4a7e8c34
commit 89ec93305e
1 changed files with 2 additions and 0 deletions

View File

@ -3908,6 +3908,8 @@ echo "Ethumb..........: yes"
echo "Ethumb_Client...: yes" echo "Ethumb_Client...: yes"
if test "${build_tests}" = "none"; then if test "${build_tests}" = "none"; then
echo "Tests...........: no" echo "Tests...........: no"
elif test "${build_tests}" = "auto"; then
echo "Tests...........: make check (inexplicitly enabled)"
elif test "${build_tests}" = "regular"; then elif test "${build_tests}" = "regular"; then
echo "Tests...........: make check" echo "Tests...........: make check"
elif test "${build_tests}" = "coverage"; then elif test "${build_tests}" = "coverage"; then