projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb0daf5
)
efl: --with-profile=dev implies --with-tests=regular
author
Gustavo Sverzut Barbieri
<barbieri@gmail.com>
Tue, 8 Jan 2013 13:39:25 +0000
(13:39 +0000)
committer
Gustavo Sverzut Barbieri
<barbieri@gmail.com>
Tue, 8 Jan 2013 13:39:25 +0000
(13:39 +0000)
if --with-tests={none,coverage} is given, those are used. Just the
default is changed.
SVN revision: 82412
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 907b80afa29c788be69543920a28b78232b5cd6e..b0641f268119e9f01d40b3fd1281c7fa5ad8082c 100644
(file)
--- 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"
;;