From e715e644f174848a52067aeb7a3fd679a30f0b2a Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 24 Jun 2022 18:46:39 +0530 Subject: [PATCH] benchmark: add a full compilation test --- .../dev/msfjarvis/claw/benchmark/BaselineProfileBenchmark.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/benchmark/src/main/kotlin/dev/msfjarvis/claw/benchmark/BaselineProfileBenchmark.kt b/benchmark/src/main/kotlin/dev/msfjarvis/claw/benchmark/BaselineProfileBenchmark.kt index b4cc4b10..e5647665 100644 --- a/benchmark/src/main/kotlin/dev/msfjarvis/claw/benchmark/BaselineProfileBenchmark.kt +++ b/benchmark/src/main/kotlin/dev/msfjarvis/claw/benchmark/BaselineProfileBenchmark.kt @@ -28,6 +28,11 @@ class BaselineProfileBenchmark { startup(CompilationMode.None()) } + @Test + fun startupBaselineFullyCompiled() { + startup(CompilationMode.Full()) + } + @Test fun startupBaselineProfile() { startup(CompilationMode.Partial(baselineProfileMode = BaselineProfileMode.Require))