Skip to content

Commit

Permalink
Specify JMH output files
Browse files Browse the repository at this point in the history
  • Loading branch information
bgprudhomme committed Oct 30, 2024
1 parent 9cc89b0 commit 0c1c4cb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions RoaringBitmap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,12 @@ tasks.register<JavaExec>("runJmhShadow") {

mainClass.set("org.openjdk.jmh.Main")
jvmArgs = listOf("-Xms2G", "-Xmx2G")

val outputFile = "build/jmh-output.txt"
val resultFile = "build/jmh-result.csv"

args = listOf(
"-o", outputFile,
"-rff", resultFile
)
}

0 comments on commit 0c1c4cb

Please sign in to comment.