summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Routhier <sar@isc.org>2016-08-26 10:57:18 -0700
committerShawn Routhier <sar@isc.org>2016-08-26 10:57:18 -0700
commitd46f66aef9d0764eb07265282fcfb826997491e2 (patch)
tree848c42a686202863b33cd01937675190c1eec6c7
parent05c052caf5ea394e76dfe351ecd1eccd9ec0df7e (diff)
downloadisc-dhcp-d46f66aef9d0764eb07265282fcfb826997491e2.tar.gz
[v4_3] Comment out the max alloc test for now
-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);