Skip to content

Commit

Permalink
Merge branch 'main' into feat(minor)/exporter-specific-configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
CrownedPhoenix authored Oct 4, 2024
2 parents b035334 + 0036984 commit b577a14
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Plugins/BenchmarkTool/BenchmarkTool+Operations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,10 @@ extension BenchmarkTool {

var p90Thresholds: [BenchmarkIdentifier : [BenchmarkMetric: BenchmarkThresholds.AbsoluteThreshold]] = [:]

print("")
print("Reading thresholds from \"\(thresholdsPath)\"")
if quiet == false {
print("")
print("Reading thresholds from \"\(thresholdsPath)\"")
}

benchmarks.forEach { benchmark in
if let thresholds = BenchmarkTool.makeBenchmarkThresholds(
Expand All @@ -164,9 +166,11 @@ extension BenchmarkTool {
exitCode: .thresholdRegression)
}

print("")
print("Checking \(benchmarks.map { $0.target + ":" + $0.name })")
print("")
if quiet == false {
print("")
print("Checking \(benchmarks.map { $0.target + ":" + $0.name })")
print("")
}

let deviationResults = currentBaseline.failsAbsoluteThresholdChecks(benchmarks: benchmarks,
p90Thresholds: p90Thresholds)
Expand Down

0 comments on commit b577a14

Please sign in to comment.