Skip to content

Commit fe372e7

Browse files
mi-acV8-internal LUCI CQ
authored andcommitted
[clean-up] Fix a typo
Bug: 465497343 Change-Id: I81b857dc9dac3fb95f8cd3b0f45be04b396626d8 Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/9043816 Commit-Queue: Michael Achenbach <machenbach@google.com> Auto-Submit: Michael Achenbach <machenbach@google.com> Reviewed-by: Danylo Mocherniuk <mdanylo@google.com> Commit-Queue: Danylo Mocherniuk <mdanylo@google.com>
1 parent e65520d commit fe372e7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Sources/Fuzzilli/Fuzzer.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,14 @@ public class Fuzzer {
167167

168168
/// State management.
169169
private var iterations = 0
170-
private var iterationOfLastInteratingSample = 0
170+
private var iterationOfLastInterestingSample = 0
171171

172172
/// Currently active corpus import job, if any.
173173
private var currentCorpusImportJob = CorpusImportJob(corpus: [], mode: .full)
174174

175175
private var iterationsSinceLastInterestingProgram: Int {
176-
assert(iterations >= iterationOfLastInteratingSample)
177-
return iterations - iterationOfLastInteratingSample
176+
assert(iterations >= iterationOfLastInterestingSample)
177+
return iterations - iterationOfLastInterestingSample
178178
}
179179

180180
/// Fuzzer instances can be looked up from a dispatch queue through this key. See below.
@@ -753,7 +753,7 @@ public class Fuzzer {
753753
} while !didConverge || attempt < minAttempts
754754

755755
if origin == .local {
756-
iterationOfLastInteratingSample = iterations
756+
iterationOfLastInterestingSample = iterations
757757
}
758758

759759
// Determine whether the program needs to be minimized, then, using this helper function, dispatch the appropriate

0 commit comments

Comments
 (0)