summaryrefslogtreecommitdiff
path: root/deps/v8/tools/testrunner/testproc/fuzzer.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/testrunner/testproc/fuzzer.py')
-rw-r--r--deps/v8/tools/testrunner/testproc/fuzzer.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/v8/tools/testrunner/testproc/fuzzer.py b/deps/v8/tools/testrunner/testproc/fuzzer.py
index 271737897a..b802368183 100644
--- a/deps/v8/tools/testrunner/testproc/fuzzer.py
+++ b/deps/v8/tools/testrunner/testproc/fuzzer.py
@@ -13,9 +13,12 @@ from . import base
EXTRA_FLAGS = [
(0.1, '--always-opt'),
(0.1, '--assert-types'),
+ # TODO(mythria): https://crbug.com/v8/10243
+ # (0.1, '--budget-for-feedback-vector-allocation=0'),
(0.1, '--cache=code'),
(0.1, '--force-slow-path'),
(0.2, '--future'),
+ (0.1, '--interrupt-budget=100'),
(0.1, '--liftoff'),
(0.2, '--no-analyze-environment-liveness'),
(0.1, '--no-enable-sse3'),
@@ -29,6 +32,7 @@ EXTRA_FLAGS = [
(0.1, '--no-enable-bmi2'),
(0.1, '--no-enable-lzcnt'),
(0.1, '--no-enable-popcnt'),
+ (0.3, '--no-lazy-feedback-allocation'),
(0.1, '--no-liftoff'),
(0.1, '--no-opt'),
(0.2, '--no-regexp-tier-up'),