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

Unified Diff: tools/ipc_fuzzer/play_testcase.py

Issue 106163003: Refactor IPC fuzzer. (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: tools/ipc_fuzzer/play_testcase.py
diff --git a/tools/ipc_fuzzer/play_testcase.py b/tools/ipc_fuzzer/play_testcase.py
index d832cd0642a253bae85891967577c919226f30f3..32a7662195b57c4c124bb416e6bf6f013c76dc4a 100755
--- a/tools/ipc_fuzzer/play_testcase.py
+++ b/tools/ipc_fuzzer/play_testcase.py
@@ -40,7 +40,7 @@ def main():
print 'chrome executable not found.'
return 1
- fuzzer_path = os.path.join(build_dir, 'ipc_fuzzer')
+ fuzzer_path = os.path.join(build_dir, 'ipc_fuzzer_replay')
if not os.path.exists(fuzzer_path):
print fuzzer_path + ' not found.'
print ('Please use enable_ipc_fuzzer=1 GYP define and '
@@ -59,6 +59,7 @@ def main():
chrome_path,
'--ipc-fuzzer-testcase=' + sys.argv[-1],
'--no-sandbox',
+ '--disable-kill-after-bad-ipc',
]
launchers = {}

Powered by Google App Engine
This is Rietveld 408576698