]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
[v4_1_esv] Comment out the max alloc test for now
authorShawn Routhier <sar@isc.org>
Fri, 26 Aug 2016 17:58:02 +0000 (10:58 -0700)
committerShawn Routhier <sar@isc.org>
Fri, 26 Aug 2016 17:58:02 +0000 (10:58 -0700)
common/tests/test_alloc.c

index afb1cd8f625c2af5c999f1f4d6c1bf515dadd4fa..437e87d33ed90a4f5c55e56135ee876e2908f644 100644 (file)
@@ -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);