OSDN Git Service

abignore: minor regexp fixes.
authorPeter Jones <pjones@redhat.com>
Tue, 23 Jan 2018 16:05:06 +0000 (11:05 -0500)
committerPeter Jones <pjones@redhat.com>
Fri, 9 Feb 2018 16:06:14 +0000 (11:06 -0500)
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 <pjones@redhat.com>
src/abignore

index 1a2e539..f72703e 100644 (file)
 #  '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