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

Unified Diff: tools/run-deopt-fuzzer.py

Issue 149173006: Make 'ASAN' configurable in test status file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 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 | « no previous file | tools/run-tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-deopt-fuzzer.py
diff --git a/tools/run-deopt-fuzzer.py b/tools/run-deopt-fuzzer.py
index 401ae046ed9a2ae3abc60ca5ebd2dcf1053c8109..c41dacbbe0831dd1fd02a7add8a5364b695e1c7f 100755
--- a/tools/run-deopt-fuzzer.py
+++ b/tools/run-deopt-fuzzer.py
@@ -154,6 +154,9 @@ def BuildOptions():
result.add_option("--arch-and-mode",
help="Architecture and mode in the format 'arch.mode'",
default=None)
+ result.add_option("--asan",
+ help="Regard test expectations for ASAN",
+ default=False, action="store_true")
result.add_option("--buildbot",
help="Adapt to path structure used on buildbots",
default=False, action="store_true")
@@ -364,6 +367,7 @@ def Execute(arch, mode, args, options, suites, workspace):
# Find available test suites and read test cases from them.
variables = {
"arch": arch,
+ "asan": options.asan,
"deopt_fuzzer": True,
"gc_stress": False,
"isolates": options.isolates,
« no previous file with comments | « no previous file | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698