gpt4 book ai didi

java - 并行运行多个 jmx 文件

转载 作者:太空宇宙 更新时间:2023-11-04 12:42:11 26 4
gpt4 key购买 nike

我们的项目结构为 src/test/jmeter/regressionTests/jmx1,jmx2,jmx2回归测试文件夹有不同的jmx文件。这些文件可以并行执行。(它们之间没有依赖关系。每个jmx文件创建自己的数据,然后删除最后创建的数据。)

目前我们使用 maven 命令运行它们:

-Pprofile-jmeter jmeter:jmeter -DtestType=regressionTest -DskipTests=true

pom.xml配置如下:

<profiles>
<profile>
<id>profile-jmeter</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.10.1</version>
<executions>
<execution>
<id>run-jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
<configuration>
<testFilesDirectory>${basedir}/src/test/jmeter/scripts/${testType}</testFilesDirectory>
<overrideRootLogLevel>ERROR</overrideRootLogLevel>
<testResultsTimestamp>false</testResultsTimestamp>
<resultsFileFormat>xml</resultsFileFormat>

我们是否可以在 pom.xml 中的 maven 命令或 maven 配置中添加任何内容,以便 jmx 文件并行运行。

最佳答案

您可以多次调用 Maven。每个进程都会执行一个单独的进程。

关于java - 并行运行多个 jmx 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36724387/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com