Make 'ASAN' configurable in test status file.
BUG= R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/149173006 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18922 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
1f346769c1
commit
5d8e2f3435
@ -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,
|
||||
|
@ -99,6 +99,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")
|
||||
@ -386,6 +389,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": False,
|
||||
"gc_stress": options.gc_stress,
|
||||
"isolates": options.isolates,
|
||||
|
Loading…
Reference in New Issue
Block a user