summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Routhier <sar@isc.org>2016-08-26 10:58:02 -0700
committerShawn Routhier <sar@isc.org>2016-08-26 10:58:02 -0700
commit4d43e1b6b1379e657ebe82173975fd4acc843a97 (patch)
tree92947bb8234288fe034b0f7959e5ff2466bcea0a
parent8b4dada09edb71ff95493f765e1f6c65f1549bfe (diff)
downloadisc-dhcp-4d43e1b6b1379e657ebe82173975fd4acc843a97.tar.gz
[v4_1_esv] 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);