aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJayant Chowdhary <jchowdhary@google.com>2017-02-10 20:14:01 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-02-10 20:14:01 +0000
commitc692633e1b2dddfb8f5ec7f60eb7a62ced325e4f (patch)
tree31ce033ea3926bc66a6ae2ad3217878cbffa5238
parent6d77d98462f6a6409535a321b105d2e631b95cb9 (diff)
parent9392f541322d6e8ebdbfe5e53c1d0784b5802071 (diff)
downloadabi-compliance-checker-c692633e1b2dddfb8f5ec7f60eb7a62ced325e4f.tar.gz
am: 9392f54132 Change-Id: I6c963d86c2692d2a5825ed3e29650b3be7cccd3c
-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;