当我尝试运行
MVN测试
我总是收到错误消息,该错误消息表明在主叫fork中出现了maven-surefire错误。这与我的本地设置有关,在我的同事PC上工作正常。我希望有人知道我的电脑出了什么问题:)
错误消息的一部分:
[错误]无法执行目标 org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (默认测试)在项目exercise00-assignment01上发生: 开始派生,检查日志中的输出-> [帮助1] org.apache.maven.lifecycle.LifecycleExecutionException:无法执行目标 org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (默认测试)在项目exercise00-assignment01上发生: 启动fork,检查日志中的输出
Caused by: org.apache.maven.surefire.booter.SurefireBooterForkException: Error occurred in starting fork, check output in log at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork (ForkStarter.java:284)
我正在使用win10,jdk:1.8.0_202,maven:3.6.0
我的 pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>at.tuwien.swtesting</groupId>
<artifactId>exercise00-assignment01</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>01-RingBufferTest</name>
<description>Entry exercise.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
答案 0 :(得分:0)
因此我将以下代码添加到了pom.xml
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
</plugin>
</plugins>
</pluginManagement>
</build>
错误消息已更改:
[错误]请参考转储文件(如果存在)[日期] .dump, [date] -jvmRun [N] .dump和[date] .dumpstream。 [ERROR]发生错误 起动前叉,检查日志中的输出[错误] org.apache.maven.surefire.booter.SurefireBooterForkException:错误 在启动叉中发生,请检查日志[ERROR]中的输出 org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:623) 在[ERROR] org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:283) 在[ERROR] org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:246)
编辑
我终于发现了我的问题,在我的文件夹路径中有一个'&'并且Windows无法处理它。这就是产生不同错误消息的原因
答案 1 :(得分:0)
我最近陷入了同样的问题。经过大量研究,我获得了低于分辨率
ForkCount应该设置为“ 0”
将您的pom文件更新为:-
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<forkCount>0</forkCount>
<suiteXmlFiles>`enter code here`
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
答案 2 :(得分:0)
在尝试了许多其他建议之后,另一个对我有用的解决方案是为每个测试类分配一个分叉。将fork设置为0会间歇性地工作,我希望它在使用debug = true时可以正常工作,它们每次都通过(调试中没有fork)。 3.0.0-M4
surefire forkcount documentation
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>number of test classes</forkCount>
</configuration>
</plugin>
</plugins>