Compile unit tests only on demand unless using --enable-debug.
This commit is contained in:
parent
ca3c5007f6
commit
520e64c095
2 changed files with 11 additions and 4 deletions
|
@ -75,6 +75,7 @@ AC_ARG_ENABLE([debug],AS_HELP_STRING([--enable-debug],[Enable debug output]),[en
|
|||
|
||||
AC_MSG_CHECKING(for debug flag)
|
||||
AC_MSG_RESULT($enable_debug)
|
||||
AM_CONDITIONAL([WITH_DEBUG], [test "$enable_debug" != "no"])
|
||||
|
||||
if test x"$enable_debug" = "xyes"
|
||||
then
|
||||
|
|
|
@ -7,11 +7,17 @@ if WITH_CUTTER
|
|||
TESTS = run-test.sh
|
||||
TESTS_ENVIRONMENT = NO_MAKE=yes CUTTER="$(CUTTER)"
|
||||
|
||||
noinst_LTLIBRARIES = \
|
||||
cutter_unit_test_libs = \
|
||||
test_access_storm.la \
|
||||
test_register_access.la \
|
||||
test_register_endianness.la
|
||||
|
||||
if WITH_DEBUG
|
||||
noinst_LTLIBRARIES = $(cutter_unit_test_libs)
|
||||
else
|
||||
check_LTLIBRARIES = $(cutter_unit_test_libs)
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = -module -rpath $(libdir) -avoid-version -no-undefined
|
||||
|
||||
test_access_storm_la_SOURCES = test_access_storm.c
|
||||
|
|
Loading…
Reference in a new issue