From 20a86cdd8de3c6fae0cd06fa113bc5f416998a18 Mon Sep 17 00:00:00 2001 From: Tianjie Xu Date: Fri, 12 Jan 2018 12:21:00 -0800 Subject: [PATCH] Iterate through the sorted file map when finding transfers This helps to generate a deterministic package. Bug: 71770360 Test: Generate a incremental package and transfers are added by file name. Change-Id: I7562a200b97a1babbb09a77801324cc9408cc01f --- tools/releasetools/blockimgdiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/releasetools/blockimgdiff.py b/tools/releasetools/blockimgdiff.py index 2b2e6d9da..f366853e0 100644 --- a/tools/releasetools/blockimgdiff.py +++ b/tools/releasetools/blockimgdiff.py @@ -1467,7 +1467,7 @@ class BlockImageDiff(object): max_blocks_per_transfer = int(cache_size * split_threshold / self.tgt.blocksize) empty = RangeSet() - for tgt_fn, tgt_ranges in self.tgt.file_map.items(): + for tgt_fn, tgt_ranges in sorted(self.tgt.file_map.items()): if tgt_fn == "__ZERO": # the special "__ZERO" domain is all the blocks not contained # in any file and that are filled with zeros. We have a