summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyuan Choi <ryuan.choi@gmail.com>2013-11-04 20:58:09 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2013-11-04 20:58:10 +0900
commitd93c4b23072d3fe4cd2b2375cf87b424d1a56ba6 (patch)
tree5f6a3f46c3817601540594a23be8df97fd11a174
parentb07c0a76ceb252f755b4b36a2c9ca341c75b4cdc (diff)
downloadefl-d93c4b23072d3fe4cd2b2375cf87b424d1a56ba6.tar.gz
configure does not print tests option as a default
Reviewers: seoz, raster Reviewed By: raster Differential Revision: https://phab.enlightenment.org/D62
-rw-r--r--configure.ac9
1 files changed, 6 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 78f6848b86..e88cf9cb85 100644
--- a/configure.ac
+++ b/configure.ac
@@ -96,9 +96,9 @@ case "${build_crypto}" in
esac
AC_ARG_WITH([tests],
- [AC_HELP_STRING([--with-tests=none|regular|coverage],
- [choose testing method: regular, coverage or none.
- @<:@default=none@:>@])],
+ [AC_HELP_STRING([--with-tests=none|auto|regular|coverage],
+ [choose testing method: regular, coverage or none or auto(same as regular if profile is dev).
+ @<:@default=auto@:>@])],
[build_tests=${withval}],
[build_tests=auto])
@@ -108,6 +108,9 @@ case "${build_tests}" in
auto)
if test "${build_profile}" = "dev"; then
want_tests="yes"
+ build_tests="regular"
+ else
+ build_tests="none"
fi
;;
regular)