Skip to content

Commit

Permalink
fix performance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JerryShea committed Apr 2, 2024
1 parent 156c79d commit 4eef297
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions microbenchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@

<modelVersion>4.0.0</modelVersion>

<groupId>net.openhft</groupId>
<parent>
<groupId>net.openhft</groupId>
<artifactId>java-parent-pom</artifactId>
<version>1.25.4</version>
<relativePath />
</parent>

<artifactId>chronicle-bytes-benchmarks</artifactId>
<version>2.24ea-SNAPSHOT</version>
<name>OpenHFT/Chronicle-Bytes/Benchmarks</name>
Expand Down Expand Up @@ -175,6 +181,9 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<classpathScope>test</classpathScope>
</configuration>
<executions>
<execution>
<id>jmh</id>
Expand All @@ -183,14 +192,8 @@
<goal>exec</goal>
</goals>
<configuration>
<classpathScope>test</classpathScope>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath/>
<argument>org.openjdk.jmh.Main</argument>
<argument>.*</argument>
</arguments>
<executable>${java.home}/bin/java</executable>
<commandlineArgs>${jvm.requiredArgs} -Djvm.resource.tracing=false -classpath %classpath org.openjdk.jmh.Main .*</commandlineArgs>
</configuration>
</execution>
<execution>
Expand All @@ -200,14 +203,8 @@
<goal>exec</goal>
</goals>
<configuration>
<classpathScope>test</classpathScope>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath/>
<argument>net.openhft.chronicle.bytes.microbenchmarks.AppendLongCoolerMain</argument>
<argument>.*</argument>
</arguments>
<executable>${java.home}/bin/java</executable>
<commandlineArgs>${jvm.requiredArgs} -Djvm.resource.tracing=false -classpath %classpath net.openhft.chronicle.bytes.microbenchmarks.AppendLongCoolerMain .*</commandlineArgs>
</configuration>
</execution>
<!-- TODO: BytesCoolerMain, GenParseMain -->
Expand Down

0 comments on commit 4eef297

Please sign in to comment.