From 060b2eaf27143613f5a9d198e7692e270e52a41d Mon Sep 17 00:00:00 2001 From: Dmitry Gridin Date: Tue, 16 Jun 2020 20:50:20 +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 a1c86005245..546c2748bc8 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(25) - iterations(38) + warmUpIterations(30) + iterations(50) setUp { configureByFile(originFilePath) }