From: Gustavo Sverzut Barbieri Date: Tue, 8 Jan 2013 13:39:25 +0000 (+0000) Subject: efl: --with-profile=dev implies --with-tests=regular X-Git-Tag: submit/efl/20131015.063327~2432 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26fa0cc64c82402f2846be28a9fdf7a75c7bc21d;p=platform%2Fupstream%2Fefl.git efl: --with-profile=dev implies --with-tests=regular if --with-tests={none,coverage} is given, those are used. Just the default is changed. SVN revision: 82412 --- diff --git a/configure.ac b/configure.ac index 907b80afa2..b0641f2681 100644 --- a/configure.ac +++ b/configure.ac @@ -98,11 +98,16 @@ AC_ARG_WITH([tests], [choose testing method: regular, coverage or none. @<:@default=none@:>@])], [build_tests=${withval}], - [build_tests=none]) + [build_tests=auto]) want_coverage="no" want_tests="no" case "${build_tests}" in + auto) + if test "${build_profile}" = "dev"; then + want_tests="yes" + fi + ;; regular) want_tests="yes" ;;