Skip to content

Commit b20514f

Browse files
Dominik KlembaV8-internal LUCI CQ
authored andcommitted
[Turbolev] Enable fuzzing of experimental features
Decreased chance for turning on stable version of Turbolev from 50% to 40%. The experimental flag is enabled in 20% of other cases (so with a chance of 12%). Change-Id: I15b9df4e6fd65581593a5150cdd2b95b3c2bf676 Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/8568096 Commit-Queue: Dominik Klemba <tacet@google.com> Reviewed-by: Matthias Liedtke <mliedtke@google.com> Reviewed-by: Victor Gomes <victorgomes@google.com> Auto-Submit: Dominik Klemba <tacet@google.com>
1 parent 9cfe4a3 commit b20514f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Sources/FuzzilliCli/Profiles/V8Profile.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,8 +716,10 @@ let v8Profile = Profile(
716716
args.append("--turboshaft-typed-optimizations")
717717
}
718718

719-
if probability(0.5) {
719+
if probability(0.4) {
720720
args.append("--turbolev")
721+
} else if probability(0.15) {
722+
args.append("--turbolev-future")
721723
}
722724

723725
if probability(0.1) {

0 commit comments

Comments
 (0)