From: Shawn Routhier Date: Fri, 26 Aug 2016 17:58:02 +0000 (-0700) Subject: [v4_1_esv] Comment out the max alloc test for now X-Git-Tag: v4_1_esv_r14b1~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d43e1b6b1379e657ebe82173975fd4acc843a97;p=thirdparty%2Fdhcp.git [v4_1_esv] Comment out the max alloc test for now --- diff --git a/common/tests/test_alloc.c b/common/tests/test_alloc.c index afb1cd8f6..437e87d33 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);