ARTEMIS-4290 Isolating more threads, removing disableThreadChecks
This commit is contained in:
parent
587ffb223c
commit
c7f28ad70b
|
@ -326,6 +326,7 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>always</forkMode>
|
||||
<skipTests>${e2e-tests.skipTests}</skipTests>
|
||||
<argLine>${e2e-tests.surefire-extra-args} ${activemq-surefire-argline} ${container-service-argline}</argLine>
|
||||
</configuration>
|
||||
|
|
|
@ -42,10 +42,6 @@ public abstract class JMSClientTestSupport extends AmqpClientTestSupport {
|
|||
@Override
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
|
||||
// Bug in Qpid JMS not shutting down a connection thread on certain errors
|
||||
// TODO - Reevaluate after Qpid JMS 0.23.0 is released.
|
||||
disableCheckThread();
|
||||
}
|
||||
|
||||
@After
|
||||
|
|
|
@ -81,10 +81,6 @@ public abstract class MultiprotocolJMSClientTestSupport extends ActiveMQTestBase
|
|||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
|
||||
// Bug in Qpid JMS not shutting down a connection thread on certain errors
|
||||
// TODO - Reevaluate after Qpid JMS 0.23.0 is released.
|
||||
disableCheckThread();
|
||||
|
||||
server = createServer();
|
||||
}
|
||||
|
||||
|
|
|
@ -1321,6 +1321,7 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>always</forkMode>
|
||||
<skipTests>${skipSmokeTests}</skipTests>
|
||||
<argLine>${sts-surefire-extra-args} ${activemq-surefire-argline} ${artemis-distribuiton-lib-dir}</argLine>
|
||||
</configuration>
|
||||
|
@ -1349,6 +1350,7 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>always</forkMode>
|
||||
<includes combine.children="override">
|
||||
<include>**/smoke/upgradeTest/*Test.java</include>
|
||||
</includes>
|
||||
|
|
|
@ -494,6 +494,7 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>always</forkMode>
|
||||
<skipTests>${skipSoakTests}</skipTests>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
|
|
Loading…
Reference in New Issue