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

Unified Diff: build/android/gyp/emma_instr.py

Issue 106923002: Don't use sys.exit() in build_utils.CheckCallDie(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: build/android/gyp/emma_instr.py
diff --git a/build/android/gyp/emma_instr.py b/build/android/gyp/emma_instr.py
index 43951d23abebee53e3cdfea4fc700aa29aa74ca0..86ee177e1d5d46ca1be75b43c9c51b2329fe42d5 100755
--- a/build/android/gyp/emma_instr.py
+++ b/build/android/gyp/emma_instr.py
@@ -161,7 +161,7 @@ def _RunInstrumentCommand(command, options, args, option_parser):
'-d', temp_dir,
'-out', coverage_file,
'-m', 'fullcopy']
- build_utils.CheckCallDie(cmd, suppress_output=True)
+ build_utils.CheckOutput(cmd)
if command == 'instrument_jar':
for jar in os.listdir(os.path.join(temp_dir, 'lib')):

Powered by Google App Engine
This is Rietveld 408576698