aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJayant Chowdhary <jchowdhary@google.com>2017-02-10 20:11:32 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-02-10 20:11:32 +0000
commit9392f541322d6e8ebdbfe5e53c1d0784b5802071 (patch)
tree31ce033ea3926bc66a6ae2ad3217878cbffa5238
parent6d77d98462f6a6409535a321b105d2e631b95cb9 (diff)
parent62cb45aec7075e026f4f3fcdc5191ea982b414b7 (diff)
downloadabi-compliance-checker-9392f541322d6e8ebdbfe5e53c1d0784b5802071.tar.gz
Enable use by build system. am: d334f9abc7
am: 62cb45aec7 Change-Id: Ia3cc050fb2c0050e26c2b9f8df27cdfe56ff5a03
-rwxr-xr-x[-rw-r--r--]abi-compliance-checker.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl
index 284ebf6..b21aede 100644..100755
--- 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;