Venkatesan Ramachandran created FALCON-2024:
-----------------------------------------------
Summary: Explore to make unit tests to run in parallel
Key: FALCON-2024
URL: https://issues.apache.org/jira/browse/FALCON-2024
Project: Falcon
Issue Type: Improvement
Components: tests
Reporter: Venkatesan Ramachandran
Assignee: Venkatesan Ramachandran
Currently the Falcon unit tests are run in highest level of separation in JUnit
using the following definition where each test class is run in separate JVM and
each test case one after another causing the test phase to take a lot of time.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<forkMode>always</forkMode>
<argLine>-Djava.awt.headless=true -Djava.security.krb5.realm=
-Djava.security.krb5.kdc=</argLine>
<excludedGroups>${excluded.test.groups}</excludedGroups>
</configuration>
</plugin>
Explore the possibility of setting forkCount/parallel to higher level to
achieve parallelism.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)