Skip to content

Commit 00086f6

Browse files
Danylo MocherniukV8-internal LUCI CQ
authored andcommitted
Actually emit variables for unused expressions.
Seems like the previous change didn't do that because configuration objects never got this boolean. Bug: 422361840 Change-Id: I9a4fd2af616b7dd5dd27126fe10004374a41992a Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/8940976 Commit-Queue: Matthias Liedtke <mliedtke@google.com> Reviewed-by: Matthias Liedtke <mliedtke@google.com>
1 parent 6faf787 commit 00086f6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Sources/FuzzilliCli/main.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,8 @@ let mainConfig = Configuration(arguments: CommandLine.arguments,
547547
staticCorpus: staticCorpus,
548548
tag: tag,
549549
isWasmEnabled: enableWasm,
550-
storagePath: storagePath)
550+
storagePath: storagePath,
551+
forDifferentialFuzzing: forDifferentialFuzzing)
551552

552553
let fuzzer = makeFuzzer(with: mainConfig)
553554

@@ -699,7 +700,8 @@ let workerConfig = Configuration(arguments: CommandLine.arguments,
699700
staticCorpus: staticCorpus,
700701
tag: tag,
701702
isWasmEnabled: enableWasm,
702-
storagePath: storagePath)
703+
storagePath: storagePath,
704+
forDifferentialFuzzing: forDifferentialFuzzing)
703705

704706
for _ in 1..<numJobs {
705707
let worker = makeFuzzer(with: workerConfig)

0 commit comments

Comments
 (0)