Re: [PATCH BlueZ] build: Add coverage support

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Marcel,

On Wed, Dec 11, 2013 at 2:00 PM, Marcel Holtmann <marcel@xxxxxxxxxxxx> wrote:
> Hi Luiz,
>
>> From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx>
>>
>> ---
>> Makefile.am         | 18 ++++++++++++++++++
>> acinclude.m4        |  9 +++++++++
>> bootstrap-configure |  1 +
>> configure.ac        |  2 ++
>> 4 files changed, 30 insertions(+)
>>
>> diff --git a/Makefile.am b/Makefile.am
>> index 15cc149..1a59532 100644
>> --- a/Makefile.am
>> +++ b/Makefile.am
>> @@ -331,5 +331,23 @@ lib/bluetooth/%.h: lib/%.h
>>       $(AM_V_at)$(MKDIR_P) lib/bluetooth
>>       $(AM_V_GEN)$(LN_S) -f "$(abs_top_builddir)"/$< $@
>>
>> +if COVERAGE
>
> maybe we should just make this depend on maintainer-mode.

We could, but I suggest you do a quick run with this version to see if
it is acceptable for maintainer-mode since it does increase quite a
bit the build time for me so perhaps we should keep it separately.

>> +clean-coverage:
>> +     $(RM) -r coverage
>> +     @find . -name "*.gcda" -exec $(RM) {} \;
>> +     $(LCOV) --directory . --zerocounters
>> +
>> +check-coverage:
>> +     @make check
>> +     $(AM_V_at)$(MKDIR_P) -p coverage
>> +     $(LCOV) --compat-libtool --directory . --capture --output-file \
>> +                                                     coverage/check.info
>> +     @genhtml -o coverage/ coverage/check.info
>> +
>> clean-local:
>> +     @make clean-coverage
>>       $(RM) -r lib/bluetooth
>> +else
>> +clean-local:
>> +     $(RM) -r lib/bluetooth
>> +endif
>> diff --git a/acinclude.m4 b/acinclude.m4
>> index 2065852..e5eb481 100644
>> --- a/acinclude.m4
>> +++ b/acinclude.m4
>> @@ -51,6 +51,15 @@ AC_DEFUN([MISC_FLAGS], [
>>                       misc_ldflags="$misc_ldflags -pie"
>>               fi
>>       ])
>> +     AC_ARG_ENABLE(coverage, AC_HELP_STRING([--enable-coverage],
>> +                     [enable coverage flags]), [
>> +             AC_PATH_PROG([LCOV], [lcov])
>> +             if (test "$LCOV" && test "${enableval}" = "yes"); then
>> +                     misc_cflags="$misc_cflags -ftest-coverage"
>> +                     misc_cflags="$misc_cflags -fprofile-arcs"
>> +                     misc_ldflags="$misc_ldflags -gcov"
>> +             fi
>> +     ])
>>       AC_SUBST([MISC_CFLAGS], $misc_cflags)
>>       AC_SUBST([MISC_LDFLAGS], $misc_ldflags)
>> ])
>> diff --git a/bootstrap-configure b/bootstrap-configure
>> index c7f08ed..35aa98b 100755
>> --- a/bootstrap-configure
>> +++ b/bootstrap-configure
>> @@ -14,4 +14,5 @@ fi
>>               --enable-experimental \
>>               --enable-android \
>>               --enable-sixaxis \
>> +             --enable-coverage \
>>               --disable-datafiles $*
>> diff --git a/configure.ac b/configure.ac
>> index 18d0b55..c55924f 100644
>> --- a/configure.ac
>> +++ b/configure.ac
>> @@ -252,4 +252,6 @@ AC_ARG_ENABLE(android, AC_HELP_STRING([--enable-android],
>>                                       [enable_android=${enableval}])
>> AM_CONDITIONAL(ANDROID, test "${enable_android}" = "yes")
>>
>> +AM_CONDITIONAL([COVERAGE], [test "$LCOV”])
>
> I do not like this one. The test should check enable_xxx variables. I rather have configure abort with error if some programs or dependencies are not found.

Okay, Ive named it LCOV because it actually checks for lcov binary and
then uses it in Makefile.am at check-coverage and clean-coverage, it
comes from AC_PATH_PROG([LCOV], [lcov]). I can do AC_MSG_ERROR if lcov
is not found, is that how you want it? I couldn't make AM_CONDITIONAL
within MISC_FLAGS that why Ive moved it to configure.ac.
-- 
Luiz Augusto von Dentz
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux