Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,12 @@ private RunResult fork( Object testSet, PropertiesWrapper providerProperties, Fo
{
runResult = timeout( reporter.getGlobalRunStatistics().getRunResult() );
}
else if ( forkClient.isErrorInFork() )
{
final StackTraceWriter stackTrace = forkClient.getErrorInFork();
booterForkException =
new SurefireBooterForkException( stackTrace.writeTraceToString() );
}
Comment on lines +656 to +661
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please look line 711 - 733
StackTrace is printed if Maven command is started with -e option

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fl4via
Pls have a look at the comments and answers. How can we continue with this?

else if ( result != SUCCESS )
{
booterForkException =
Expand Down