From d334f9abc7aec80978ee1878bd4988e23c6805c6 Mon Sep 17 00:00:00 2001 From: Jayant Chowdhary Date: Thu, 9 Feb 2017 22:28:11 -0800 Subject: Enable use by build system. Allow dumps with extension .bdump. Give +x permissions. Test: Created reference dumps using vndk_abi_tool.py, changed parameter type of fread in bionic/libc. Produced abi breakage report. Change-Id: I34fa19cbf695caf70eee7ce7254a435d15e63301 --- abi-compliance-checker.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 abi-compliance-checker.pl diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl old mode 100644 new mode 100755 index 284ebf6..b21aede --- a/abi-compliance-checker.pl +++ b/abi-compliance-checker.pl @@ -22470,8 +22470,8 @@ sub printErrorLog($) } sub isDump($) -{ - if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump)(\.tar\.gz(\.\w+|)|\.zip|\.xml|)\Z/) +{ # Modified to include "bdump" - binary dump. + if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump|bdump)(\.tar\.gz(\.\w+|)|\.zip|\.xml|)\Z/) { # NOTE: name.abi.tar.gz.amd64 (dh & cdbs) return $1; } @@ -22479,8 +22479,8 @@ sub isDump($) } sub isDump_U($) -{ - if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump)(\.xml|)\Z/) { +{ # Modified to include "bdump" - binary dump. + if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump|bdump)(\.xml|)\Z/) { return $1; } return 0; -- cgit v1.2.3