From b01d184c38bc4338298d8ed16991f4898bb514ab Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Tue, 23 Jan 2018 11:05:06 -0500 Subject: [PATCH] abignore: minor regexp fixes. These don't help, mind you, as currently "added-function" exceptions don't seem to work at all, and they're impossible to debug. Signed-off-by: Peter Jones --- src/abignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/abignore b/src/abignore index 1a2e539..f72703e 100644 --- a/src/abignore +++ b/src/abignore @@ -24,18 +24,18 @@ # 'const __anonymous_struct__ efi_guid_ux_capsule' {efi_guid_ux_capsule@@LIBEFIVAR_1.32} # [suppress_variable] - soname_regexp = ^libefivar\\.so\\.[[:digit:]]+ + soname_regexp = libefivar\\.so\\..* symbol_name_regexp = ^efi_guid_[[:alnum:]_]+$ change_kind = added-variable # allow new functions that are prefixed correctly [suppress_function] - soname_regexp = libefi(var|boot)\\.so\\..* - symbol_name_regexp = ^(efidp_|efi_)_[[:alnum:]_]+ + soname_regexp = ^libefi(var|boot)\\.so\\..* + name_regexp = ^(efidp_|efi_)[[:alnum:]_]+ change_kind = added-function # allow new variables that are prefixed correctly [suppress_variable] soname_regexp = libefi(var|boot)\\.so\\..* - symbol_name_regexp = ^(efidp_|efi_)_[[:alnum:]_]+ + symbol_name_regexp = ^(efidp_|efi_)[[:alnum:]_]+ change_kind = added-variable -- 2.11.0