From: Julian Seward Date: Wed, 14 May 2008 06:49:51 +0000 (+0000) Subject: Merge fix for #161487 (number of suppression files is limited to 10) X-Git-Tag: svn/VALGRIND_3_3_1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb5a3cc7b55f510cf5ce7c60adc5aab807bbf6a4;p=thirdparty%2Fvalgrind.git Merge fix for #161487 (number of suppression files is limited to 10) git-svn-id: svn://svn.valgrind.org/valgrind/branches/VALGRIND_3_3_BRANCH@8069 --- diff --git a/coregrind/pub_core_options.h b/coregrind/pub_core_options.h index 384a6a5e39..fb49267f56 100644 --- a/coregrind/pub_core_options.h +++ b/coregrind/pub_core_options.h @@ -40,7 +40,7 @@ #include "pub_tool_options.h" /* The max number of suppression files. */ -#define VG_CLO_MAX_SFILES 10 +#define VG_CLO_MAX_SFILES 100 /* Should we stop collecting errors if too many appear? default: YES */ extern Bool VG_(clo_error_limit); diff --git a/docs/xml/manual-core.xml b/docs/xml/manual-core.xml index 95eb5df73b..5f6fd262fb 100644 --- a/docs/xml/manual-core.xml +++ b/docs/xml/manual-core.xml @@ -885,8 +885,8 @@ that can report errors, e.g. Memcheck, but not Cachegrind. Specifies an extra file from which to read descriptions of - errors to suppress. You may use as many extra suppressions files - as you like. + errors to suppress. You may use up to 100 extra suppression + files.