Skip to content

Commit d3a70f9

Browse files
Danylo MocherniukV8-internal LUCI CQ
authored andcommitted
[dumpling] Now actually add differential count.
Before we were printing 0 always. Bug: 441467877 Change-Id: Icacd9310f8cd845695d2a83e5eb297ce2e60882b Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/8977177 Reviewed-by: Matthias Liedtke <mliedtke@google.com> Commit-Queue: Danylo Mocherniuk <mdanylo@google.com>
1 parent 5b936a6 commit d3a70f9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Sources/Fuzzilli/Modules/Statistics.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ public class Statistics: Module {
136136
fuzzer.registerEventListener(for: fuzzer.events.CrashFound) { _ in
137137
self.ownData.crashingSamples += 1
138138
}
139+
fuzzer.registerEventListener(for: fuzzer.events.DifferentialFound) { _ in
140+
self.ownData.differentialSamples += 1
141+
}
139142
fuzzer.registerEventListener(for: fuzzer.events.TimeOutFound) { _ in
140143
self.ownData.timedOutSamples += 1
141144
self.correctnessRate.add(0.0)

0 commit comments

Comments
 (0)