@@ -16,13 +16,6 @@ public struct Configuration {
1616 /// Timeout in milliseconds after which child processes will be killed.
1717 public let timeout : UInt32
1818
19- /// Enable "speed test" mode.
20- /// In that mode, the fuzzer runs as normal, but all programs
21- /// scheduled for execution are replaced by a predefined program.
22- /// This provides consistent execution speed of the generated samples
23- /// and is useful for evaluating the performance of the fuzzer itself.
24- public let speedTestMode : Bool
25-
2619 /// Log level to use.
2720 public let logLevel : LogLevel
2821
@@ -77,7 +70,6 @@ public struct Configuration {
7770
7871 public init ( timeout: UInt32 = 250 ,
7972 skipStartupTests: Bool = false ,
80- speedTestMode: Bool = false ,
8173 logLevel: LogLevel = . info,
8274 crashTests: [ String ] = [ ] ,
8375 isMaster: Bool = false ,
@@ -90,7 +82,6 @@ public struct Configuration {
9082 enableDiagnostics: Bool = false ,
9183 inspection: InspectionOptions = [ ] ) {
9284 self . timeout = timeout
93- self . speedTestMode = speedTestMode
9485 self . logLevel = logLevel
9586 self . crashTests = crashTests
9687 self . isMaster = isMaster
0 commit comments