We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11aca40 commit ae7fcd9Copy full SHA for ae7fcd9
scripts/fuzz_opt.py
@@ -147,8 +147,8 @@ def randomize_feature_opts():
147
# code paths, and also allows all initial contents to run.
148
149
# The shared-everything feature is new and we want to fuzz it, but it
150
- # also currently disables fuzzing V8, so disable it half the time.
151
- if random.random() < 0.5:
+ # also currently disables fuzzing V8, so disable it most of the time.
+ if random.random() < 0.9:
152
FEATURE_OPTS.append('--disable-shared-everything')
153
154
print('randomized feature opts:', '\n ' + '\n '.join(FEATURE_OPTS))
0 commit comments