Do not diff .odex files

They still are not deterministic -- only the boot images were made
deterministic (.oat/.art).

Bug: 26956807
Change-Id: I2e00bb6662b4c8d184c48ef9aa34b39142c94893
This commit is contained in:
Dan Willemsen 2016-02-03 10:46:39 -08:00
parent 8c915ee2ef
commit c4438d3d29

View file

@ -51,6 +51,10 @@ def ignore(name):
'RECOVERY/RAMDISK/selinux_version']:
return True
# b/26956807 .odex files are not deterministic
if name.endswith('.odex'):
return True
return False