summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorShawn Routhier <sar@isc.org>2016-08-26 10:53:44 -0700
committerShawn Routhier <sar@isc.org>2016-08-26 10:53:44 -0700
commit3d9cf089ee9d3056ec9a338566da55319ea519f8 (patch)
treec0891ffc1c0212df80b8cd5a9163b3a2a37a0917 /common
parent51ce599530dc41bec084561ef63e591fc83ec922 (diff)
downloadisc-dhcp-3d9cf089ee9d3056ec9a338566da55319ea519f8.tar.gz
[master] Comment out the max alloc test for now
Diffstat (limited to 'common')
-rw-r--r--common/tests/test_alloc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/common/tests/test_alloc.c b/common/tests/test_alloc.c
index afb1cd8f..437e87d3 100644
--- a/common/tests/test_alloc.c
+++ b/common/tests/test_alloc.c
@@ -569,6 +569,10 @@ void checkBuffer(size_t test_size, const char *file, int line) {
}
}
+#if 0
+/* The max test presents some issues for some systems,
+ * leave it out for now
+ */
ATF_TC(dmalloc_max32);
ATF_TC_HEAD(dmalloc_max32, tc) {
@@ -578,6 +582,7 @@ ATF_TC_HEAD(dmalloc_max32, tc) {
ATF_TC_BODY(dmalloc_max32, tc) {
checkBuffer(0XFFFFFFFF, MDL);
}
+#endif
ATF_TC(dmalloc_med1);
@@ -630,7 +635,9 @@ ATF_TP_ADD_TCS(tp)
ATF_TP_ADD_TC(tp, data_string_copy_nobuf);
ATF_TP_ADD_TC(tp, data_string_new);
ATF_TP_ADD_TC(tp, data_string_terminate);
+#if 0
ATF_TP_ADD_TC(tp, dmalloc_max32);
+#endif
ATF_TP_ADD_TC(tp, dmalloc_med1);
ATF_TP_ADD_TC(tp, dmalloc_med2);
ATF_TP_ADD_TC(tp, dmalloc_med3);