in base/src/main/java/org/apache/sling/performance/PerformanceRunner.java [107:121]
public void run(RunNotifier notifier) {
super.run(notifier);
try {
ReportLogger.writeAllResults();
} catch (Exception e) {
logger.error(e.getMessage(), e);
}
try {
for (Failure failure : ReportLogger.checkAllThresholds()) {
notifier.fireTestFailure(failure);
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
}
}