Skip to content

Commit 77031cc

Browse files
Liedtkev8-internal-scoped@luci-project-accounts.iam.gserviceaccount.com
authored andcommitted
[v8] Add flag --wasm-random-rescheduling
Other fuzzers have a head-start already with crrev.com/c/7939890 (and are already reporting issues.) Bug: 458409082 Change-Id: If1fc65fc34c5325b5535a9bf8a08fe4e432203ba Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/9419314 Auto-Submit: Matthias Liedtke <mliedtke@google.com> Commit-Queue: Matthias Liedtke <mliedtke@google.com> Reviewed-by: Michael Achenbach <machenbach@google.com> Commit-Queue: Michael Achenbach <machenbach@google.com>
1 parent ed0f498 commit 77031cc

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Sources/Fuzzilli/Profiles/V8CommonProfile.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,6 +1205,10 @@ public func v8ProcessArgs(randomize: Bool, forSandbox: Bool) -> [String] {
12051205
args.append("--wasm-caching-threshold=\(Int.random(in: 1...1000))")
12061206
}
12071207

1208+
if probability(0.2) {
1209+
args.append("--wasm-random-rescheduling")
1210+
}
1211+
12081212
// Disabling batching allows the fuzzer to reach higher JIT tiers faster; sometimes test the
12091213
// production configuration too.
12101214
if probability(0.8) {

0 commit comments

Comments
 (0)