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

Unified Diff: tools/binary_size/libsupersize/integration_test.py

Issue 2807343005: //tools/binary_size: Record packed .rel.dyn section size (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
Index: tools/binary_size/libsupersize/integration_test.py
diff --git a/tools/binary_size/libsupersize/integration_test.py b/tools/binary_size/libsupersize/integration_test.py
index 830c3355b6ff6aacd9cbf2a99a6cd2d82ed4afd2..30fa4fd3ebef6dfce5f367d9c9741fb070907285 100755
--- a/tools/binary_size/libsupersize/integration_test.py
+++ b/tools/binary_size/libsupersize/integration_test.py
@@ -71,7 +71,7 @@ class IntegrationTest(unittest.TestCase):
def test_Archive(self):
with tempfile.NamedTemporaryFile(suffix='.size') as temp_file:
_RunApp('archive', temp_file.name, '--output-directory', _TEST_DATA_DIR,
- '--map-file', _TEST_MAP_PATH, '--elf-file', '')
+ '--map-file', _TEST_MAP_PATH)
size_info = archive.LoadAndPostProcessSizeInfo(temp_file.name)
# Check that saving & loading is the same as directly parsing the .map.
expected_size_info = self._CloneSizeInfo()
@@ -90,7 +90,7 @@ class IntegrationTest(unittest.TestCase):
# Just tests that it doesn't crash.
with tempfile.NamedTemporaryFile(suffix='.size') as temp_file:
_RunApp('archive', temp_file.name, '--no-source-paths',
- '--map-file', _TEST_MAP_PATH, '--elf-file', '')
+ '--map-file', _TEST_MAP_PATH)
archive.LoadAndPostProcessSizeInfo(temp_file.name)
@_CompareWithGolden
« tools/binary_size/libsupersize/archive.py ('K') | « tools/binary_size/libsupersize/console.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698