From dfcf52c9f13cfe96b517549c57327380c82e6d4a Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Thu, 13 Aug 2015 22:34:51 +0200 Subject: [PATCH] leak_analyser: Update excludes with more generic regex for ICU. Also add initialize_before of libroot to the default excludes. --- src/bin/leak_analyser.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/leak_analyser.sh b/src/bin/leak_analyser.sh index 66c6880ae0..2532e2af52 100755 --- a/src/bin/leak_analyser.sh +++ b/src/bin/leak_analyser.sh @@ -94,6 +94,7 @@ EXCLUDE_PATTERN="" if [ -z "$NO_DEFAULTS" ] then declare -a DEFAULT_EXCLUDE_LIST=( \ + " initialize_before " \ " __cxa_atexit " \ " BPrivate::Libroot::LocaleBackend::LoadBackend" \ " initialize_before " \ @@ -108,8 +109,7 @@ then " _init " \ " BTranslatorRoster::Default" \ "Translator> " \ - " icu::" \ - " icu::" \ + " icu(_[0-9]+)?::" \ ) for EXCLUDE in "${DEFAULT_EXCLUDE_LIST[@]}"