Remove --enable-code-coverage.
This option hasn't been particularly useful since the original pre-3.0.0 push to broaden test coverage. This partially resolves #580.
This commit is contained in:
parent
0f63396b23
commit
e2cc6280ed
13
INSTALL
13
INSTALL
@ -100,19 +100,6 @@ any of the following arguments (not a definitive list) to 'configure':
|
|||||||
Enable assertions and validation code. This incurs a substantial
|
Enable assertions and validation code. This incurs a substantial
|
||||||
performance hit, but is very useful during application development.
|
performance hit, but is very useful during application development.
|
||||||
|
|
||||||
--enable-code-coverage
|
|
||||||
Enable code coverage support, for use during jemalloc test development.
|
|
||||||
Additional testing targets are available if this option is enabled:
|
|
||||||
|
|
||||||
coverage
|
|
||||||
coverage_unit
|
|
||||||
coverage_integration
|
|
||||||
coverage_stress
|
|
||||||
|
|
||||||
These targets do not clear code coverage results from previous runs, and
|
|
||||||
there are interactions between the various coverage targets, so it is
|
|
||||||
usually advisable to run 'make clean' between repeated code coverage runs.
|
|
||||||
|
|
||||||
--disable-stats
|
--disable-stats
|
||||||
Disable statistics gathering functionality. See the "opt.stats_print"
|
Disable statistics gathering functionality. See the "opt.stats_print"
|
||||||
option documentation for usage details.
|
option documentation for usage details.
|
||||||
|
50
Makefile.in
50
Makefile.in
@ -55,7 +55,6 @@ cfghdrs_out := @cfghdrs_out@
|
|||||||
cfgoutputs_in := $(addprefix $(srcroot),@cfgoutputs_in@)
|
cfgoutputs_in := $(addprefix $(srcroot),@cfgoutputs_in@)
|
||||||
cfgoutputs_out := @cfgoutputs_out@
|
cfgoutputs_out := @cfgoutputs_out@
|
||||||
enable_autogen := @enable_autogen@
|
enable_autogen := @enable_autogen@
|
||||||
enable_code_coverage := @enable_code_coverage@
|
|
||||||
enable_prof := @enable_prof@
|
enable_prof := @enable_prof@
|
||||||
enable_zone_allocator := @enable_zone_allocator@
|
enable_zone_allocator := @enable_zone_allocator@
|
||||||
MALLOC_CONF := @JEMALLOC_CPREFIX@MALLOC_CONF
|
MALLOC_CONF := @JEMALLOC_CPREFIX@MALLOC_CONF
|
||||||
@ -452,38 +451,6 @@ stress: tests_stress stress_dir
|
|||||||
$(SHELL) $(objroot)test/test.sh $(TESTS_STRESS:$(srcroot)%.c=$(objroot)%)
|
$(SHELL) $(objroot)test/test.sh $(TESTS_STRESS:$(srcroot)%.c=$(objroot)%)
|
||||||
check: check_unit check_integration check_integration_decay check_integration_prof
|
check: check_unit check_integration check_integration_decay check_integration_prof
|
||||||
|
|
||||||
ifeq ($(enable_code_coverage), 1)
|
|
||||||
coverage_unit: check_unit
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src jet $(C_JET_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/src unit $(C_TESTLIB_UNIT_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/unit unit $(TESTS_UNIT_OBJS)
|
|
||||||
|
|
||||||
coverage_integration: check_integration
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src pic $(C_PIC_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src integration $(C_UTIL_INTEGRATION_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/src integration $(C_TESTLIB_INTEGRATION_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/integration integration $(TESTS_INTEGRATION_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/integration/cpp integration $(TESTS_INTEGRATION_CPP_OBJS)
|
|
||||||
|
|
||||||
coverage_stress: stress
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src pic $(C_PIC_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src jet $(C_JET_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/src stress $(C_TESTLIB_STRESS_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/stress stress $(TESTS_STRESS_OBJS)
|
|
||||||
|
|
||||||
coverage: check
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src pic $(C_PIC_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src jet $(C_JET_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)src integration $(C_UTIL_INTEGRATION_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/src unit $(C_TESTLIB_UNIT_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/src integration $(C_TESTLIB_INTEGRATION_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/src stress $(C_TESTLIB_STRESS_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/unit unit $(TESTS_UNIT_OBJS) $(TESTS_UNIT_AUX_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/integration integration $(TESTS_INTEGRATION_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/integration/cpp integration $(TESTS_INTEGRATION_CPP_OBJS)
|
|
||||||
$(SHELL) $(srcroot)coverage.sh $(srcroot)test/stress integration $(TESTS_STRESS_OBJS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(C_OBJS)
|
rm -f $(C_OBJS)
|
||||||
rm -f $(CPP_OBJS)
|
rm -f $(CPP_OBJS)
|
||||||
@ -492,37 +459,20 @@ clean:
|
|||||||
rm -f $(C_JET_OBJS)
|
rm -f $(C_JET_OBJS)
|
||||||
rm -f $(C_TESTLIB_OBJS)
|
rm -f $(C_TESTLIB_OBJS)
|
||||||
rm -f $(C_OBJS:%.$(O)=%.d)
|
rm -f $(C_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(C_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(C_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(CPP_OBJS:%.$(O)=%.d)
|
rm -f $(CPP_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(CPP_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(CPP_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(C_PIC_OBJS:%.$(O)=%.d)
|
rm -f $(C_PIC_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(C_PIC_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(C_PIC_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(CPP_PIC_OBJS:%.$(O)=%.d)
|
rm -f $(CPP_PIC_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(CPP_PIC_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(CPP_PIC_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(C_JET_OBJS:%.$(O)=%.d)
|
rm -f $(C_JET_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(C_JET_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(C_JET_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(C_TESTLIB_OBJS:%.$(O)=%.d)
|
rm -f $(C_TESTLIB_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(C_TESTLIB_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(C_TESTLIB_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(TESTS_OBJS:%.$(O)=%$(EXE))
|
rm -f $(TESTS_OBJS:%.$(O)=%$(EXE))
|
||||||
rm -f $(TESTS_OBJS)
|
rm -f $(TESTS_OBJS)
|
||||||
rm -f $(TESTS_OBJS:%.$(O)=%.d)
|
rm -f $(TESTS_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(TESTS_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(TESTS_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(TESTS_OBJS:%.$(O)=%.out)
|
rm -f $(TESTS_OBJS:%.$(O)=%.out)
|
||||||
rm -f $(TESTS_CPP_OBJS:%.$(O)=%$(EXE))
|
rm -f $(TESTS_CPP_OBJS:%.$(O)=%$(EXE))
|
||||||
rm -f $(TESTS_CPP_OBJS)
|
rm -f $(TESTS_CPP_OBJS)
|
||||||
rm -f $(TESTS_CPP_OBJS:%.$(O)=%.d)
|
rm -f $(TESTS_CPP_OBJS:%.$(O)=%.d)
|
||||||
rm -f $(TESTS_CPP_OBJS:%.$(O)=%.gcda)
|
|
||||||
rm -f $(TESTS_CPP_OBJS:%.$(O)=%.gcno)
|
|
||||||
rm -f $(TESTS_CPP_OBJS:%.$(O)=%.out)
|
rm -f $(TESTS_CPP_OBJS:%.$(O)=%.out)
|
||||||
rm -f $(DSOS) $(STATIC_LIBS)
|
rm -f $(DSOS) $(STATIC_LIBS)
|
||||||
rm -f $(objroot)*.gcov.*
|
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f $(objroot)bin/jemalloc-config
|
rm -f $(objroot)bin/jemalloc-config
|
||||||
|
26
configure.ac
26
configure.ac
@ -783,31 +783,6 @@ AC_CHECK_FUNC([valloc],
|
|||||||
[AC_DEFINE([JEMALLOC_OVERRIDE_VALLOC], [ ])
|
[AC_DEFINE([JEMALLOC_OVERRIDE_VALLOC], [ ])
|
||||||
public_syms="${public_syms} valloc"])
|
public_syms="${public_syms} valloc"])
|
||||||
|
|
||||||
dnl Do not compute test code coverage by default.
|
|
||||||
GCOV_FLAGS=
|
|
||||||
AC_ARG_ENABLE([code-coverage],
|
|
||||||
[AS_HELP_STRING([--enable-code-coverage],
|
|
||||||
[Enable code coverage])],
|
|
||||||
[if test "x$enable_code_coverage" = "xno" ; then
|
|
||||||
enable_code_coverage="0"
|
|
||||||
else
|
|
||||||
enable_code_coverage="1"
|
|
||||||
fi
|
|
||||||
],
|
|
||||||
[enable_code_coverage="0"]
|
|
||||||
)
|
|
||||||
if test "x$enable_code_coverage" = "x1" ; then
|
|
||||||
deoptimize="no"
|
|
||||||
echo "$CFLAGS $EXTRA_CFLAGS" | grep '\-O' >/dev/null || deoptimize="yes"
|
|
||||||
if test "x${deoptimize}" = "xyes" ; then
|
|
||||||
JE_CFLAGS_ADD([-O0])
|
|
||||||
fi
|
|
||||||
JE_CFLAGS_ADD([-fprofile-arcs -ftest-coverage])
|
|
||||||
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -fprofile-arcs -ftest-coverage"
|
|
||||||
AC_DEFINE([JEMALLOC_CODE_COVERAGE], [ ])
|
|
||||||
fi
|
|
||||||
AC_SUBST([enable_code_coverage])
|
|
||||||
|
|
||||||
dnl Perform no name mangling by default.
|
dnl Perform no name mangling by default.
|
||||||
AC_ARG_WITH([mangling],
|
AC_ARG_WITH([mangling],
|
||||||
[AS_HELP_STRING([--with-mangling=<map>], [Mangle symbols in <map>])],
|
[AS_HELP_STRING([--with-mangling=<map>], [Mangle symbols in <map>])],
|
||||||
@ -2093,7 +2068,6 @@ AC_MSG_RESULT([install_suffix : ${install_suffix}])
|
|||||||
AC_MSG_RESULT([malloc_conf : ${config_malloc_conf}])
|
AC_MSG_RESULT([malloc_conf : ${config_malloc_conf}])
|
||||||
AC_MSG_RESULT([autogen : ${enable_autogen}])
|
AC_MSG_RESULT([autogen : ${enable_autogen}])
|
||||||
AC_MSG_RESULT([debug : ${enable_debug}])
|
AC_MSG_RESULT([debug : ${enable_debug}])
|
||||||
AC_MSG_RESULT([code-coverage : ${enable_code_coverage}])
|
|
||||||
AC_MSG_RESULT([stats : ${enable_stats}])
|
AC_MSG_RESULT([stats : ${enable_stats}])
|
||||||
AC_MSG_RESULT([prof : ${enable_prof}])
|
AC_MSG_RESULT([prof : ${enable_prof}])
|
||||||
AC_MSG_RESULT([prof-libunwind : ${enable_prof_libunwind}])
|
AC_MSG_RESULT([prof-libunwind : ${enable_prof_libunwind}])
|
||||||
|
16
coverage.sh
16
coverage.sh
@ -1,16 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
objdir=$1
|
|
||||||
suffix=$2
|
|
||||||
shift 2
|
|
||||||
objs=$@
|
|
||||||
|
|
||||||
gcov -b -p -f -o "${objdir}" ${objs}
|
|
||||||
|
|
||||||
# Move gcov outputs so that subsequent gcov invocations won't clobber results
|
|
||||||
# for the same sources with different compilation flags.
|
|
||||||
for f in `find . -maxdepth 1 -type f -name '*.gcov'` ; do
|
|
||||||
mv "${f}" "${f}.${suffix}"
|
|
||||||
done
|
|
@ -127,9 +127,6 @@
|
|||||||
/* Non-empty if the tls_model attribute is supported. */
|
/* Non-empty if the tls_model attribute is supported. */
|
||||||
#undef JEMALLOC_TLS_MODEL
|
#undef JEMALLOC_TLS_MODEL
|
||||||
|
|
||||||
/* JEMALLOC_CODE_COVERAGE enables test code coverage analysis. */
|
|
||||||
#undef JEMALLOC_CODE_COVERAGE
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* JEMALLOC_DEBUG enables assertions and other sanity checks, and disables
|
* JEMALLOC_DEBUG enables assertions and other sanity checks, and disables
|
||||||
* inline functions.
|
* inline functions.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef JEMALLOC_INTERNAL_MACROS_H
|
#ifndef JEMALLOC_INTERNAL_MACROS_H
|
||||||
#define JEMALLOC_INTERNAL_MACROS_H
|
#define JEMALLOC_INTERNAL_MACROS_H
|
||||||
|
|
||||||
#if defined(JEMALLOC_DEBUG) || defined(JEMALLOC_CODE_COVERAGE)
|
#ifdef JEMALLOC_DEBUG
|
||||||
# define JEMALLOC_ALWAYS_INLINE static inline
|
# define JEMALLOC_ALWAYS_INLINE static inline
|
||||||
#else
|
#else
|
||||||
# define JEMALLOC_ALWAYS_INLINE JEMALLOC_ATTR(always_inline) static inline
|
# define JEMALLOC_ALWAYS_INLINE JEMALLOC_ATTR(always_inline) static inline
|
||||||
|
Loading…
Reference in New Issue
Block a user