Skip to content

Commit 225a7c8

Browse files
author
Samuel Groß
committed
Add --stress-scavenger-pinning-objects-random to V8Profile
... and enable it 10% of the time if --argumentRandomization is used.
1 parent ad4b1ec commit 225a7c8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Sources/FuzzilliCli/Profiles/V8Profile.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,10 @@ let v8Profile = Profile(
498498
args.append("--battery-saver-mode")
499499
}
500500

501+
if probability(0.1) {
502+
args.append("--stress-scavenger-pinning-objects-random")
503+
}
504+
501505
//
502506
// Sometimes enable additional verification/stressing logic (which may be fairly expensive).
503507
//

0 commit comments

Comments
 (0)