ZTEST: Always enable asserts
The build for ztest always enabled debug information but does not enable asserts unless --enable-debug is used. This will always enable asserts in the ztest code. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: David Quigley <david.quigley@intel.com> Closes #6640
This commit is contained in:
parent
7c9abcf887
commit
1f4e2c88fd
|
@ -3,7 +3,7 @@ include $(top_srcdir)/config/Rules.am
|
|||
# -Wnoformat-truncation to get rid of compiler warning for unchecked
|
||||
# truncating snprintfs on gcc 7.1.1.
|
||||
AM_CFLAGS += $(DEBUG_STACKFLAGS) $(FRAME_LARGER_THAN) $(NO_FORMAT_TRUNCATION)
|
||||
AM_CPPFLAGS += -DDEBUG
|
||||
AM_CPPFLAGS += -DDEBUG -UNDEBUG
|
||||
|
||||
DEFAULT_INCLUDES += \
|
||||
-I$(top_srcdir)/include \
|
||||
|
|
Loading…
Reference in New Issue