summaryrefslogtreecommitdiff
path: root/deps/v8/tools/run-deopt-fuzzer.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/run-deopt-fuzzer.py')
-rwxr-xr-xdeps/v8/tools/run-deopt-fuzzer.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/tools/run-deopt-fuzzer.py b/deps/v8/tools/run-deopt-fuzzer.py
index f7ec819ecd..70e106ec1b 100755
--- a/deps/v8/tools/run-deopt-fuzzer.py
+++ b/deps/v8/tools/run-deopt-fuzzer.py
@@ -316,6 +316,7 @@ def Main():
suite = testsuite.TestSuite.LoadTestSuite(
os.path.join(workspace, "test", root))
if suite:
+ suite.SetupWorkingDirectory()
suites.append(suite)
if options.download_data:
@@ -380,7 +381,8 @@ def Execute(arch, mode, args, options, suites, workspace):
0, # Don't rerun failing tests.
0, # No use of a rerun-failing-tests maximum.
False, # No predictable mode.
- False) # No no_harness mode.
+ False, # No no_harness mode.
+ False) # Don't use perf data.
# Find available test suites and read test cases from them.
variables = {
@@ -388,6 +390,7 @@ def Execute(arch, mode, args, options, suites, workspace):
"asan": options.asan,
"deopt_fuzzer": True,
"gc_stress": False,
+ "gcov_coverage": False,
"ignition": False,
"isolates": options.isolates,
"mode": mode,