Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Unified Diff: tools/binary_size/integration_test.py

Issue 2802893002: Add gn args to metadata and metadata diffing (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/binary_size/describe.py ('k') | tools/binary_size/map2size.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/binary_size/integration_test.py
diff --git a/tools/binary_size/integration_test.py b/tools/binary_size/integration_test.py
index 32ac776111525f10b44ad305313bead6c0fef1d3..052242ed887867f20e19816b39a6a7e0b311fac1 100755
--- a/tools/binary_size/integration_test.py
+++ b/tools/binary_size/integration_test.py
@@ -87,6 +87,8 @@ class IntegrationTest(unittest.TestCase):
def test_ActualDiff(self):
map1 = self._CloneSizeInfo()
map2 = self._CloneSizeInfo()
+ map1.metadata = {"foo": 1, "bar": [1,2,3], "baz": "yes"}
+ map2.metadata = {"foo": 1, "bar": [1,3], "baz": "yes"}
map1.symbols -= map1.symbols[0]
map2.symbols -= map2.symbols[-1]
map1.symbols[1].size -= 10
« no previous file with comments | « tools/binary_size/describe.py ('k') | tools/binary_size/map2size.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698