From 85840578ad3ff5fdeb4f9fb0b96ed01b9d97dcc5 Mon Sep 17 00:00:00 2001 From: Dmitry Gridin Date: Tue, 16 Jun 2020 15:19:39 +0700 Subject: [PATCH] Increase warm-up, test iterations in PerformanceTypingIndentationTest --- .../idea/perf/AbstractPerformanceTypingIndentationTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/performanceTests/test/org/jetbrains/kotlin/idea/perf/AbstractPerformanceTypingIndentationTest.kt b/idea/performanceTests/test/org/jetbrains/kotlin/idea/perf/AbstractPerformanceTypingIndentationTest.kt index a1b8b3ed962..a1c86005245 100644 --- a/idea/performanceTests/test/org/jetbrains/kotlin/idea/perf/AbstractPerformanceTypingIndentationTest.kt +++ b/idea/performanceTests/test/org/jetbrains/kotlin/idea/perf/AbstractPerformanceTypingIndentationTest.kt @@ -39,8 +39,8 @@ abstract class AbstractPerformanceTypingIndentationTest : KotlinLightPlatformCod performanceTest { name(testName) stats(stats) - warmUpIterations(20) - iterations(30) + warmUpIterations(25) + iterations(38) setUp { configureByFile(originFilePath) }