Repository: activemq-artemis Updated Branches: refs/heads/master 8182f8bd2 -> 200fd5c1b
Include just a few packages in activemq5-unit-tests to start with Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/2866ecd4 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/2866ecd4 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/2866ecd4 Branch: refs/heads/master Commit: 2866ecd4c26b7a53d63dce06ef4ea7c1ffcf7fbf Parents: 8182f8b Author: Howard Gao <[email protected]> Authored: Thu Jul 30 18:39:12 2015 +0800 Committer: Howard Gao <[email protected]> Committed: Thu Jul 30 18:40:18 2015 +0800 ---------------------------------------------------------------------- tests/activemq5-unit-tests/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/2866ecd4/tests/activemq5-unit-tests/pom.xml ---------------------------------------------------------------------- diff --git a/tests/activemq5-unit-tests/pom.xml b/tests/activemq5-unit-tests/pom.xml index cecd5b3..8bb15d9 100644 --- a/tests/activemq5-unit-tests/pom.xml +++ b/tests/activemq5-unit-tests/pom.xml @@ -383,6 +383,20 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>${skipActiveMQ5Tests}</skipTests> + <includes> + <!-- include this first three packages --> + <include>**/org/apache/activemq/*Test.java</include> + <include>**/org/apache/activemq/command/*Test.java</include> + <include>**/org/apache/activemq/openwire/*Test.java</include> + <include>**/org/apache/activemq/transport/tcp/*Test.java</include> + <!-- tests that are known to pass--> + <include>**/org/apache/activemq/blob/BlobTransferPolicyUriTest.java</include> + </includes> + <excludes> + <!-- exclude tests that can cause hang --> + <exclude>**/org/apache/activemq/PerDestinationStoreLimitTest.java</exclude> + <exclude>**/org/apache/activemq/ProducerFlowControlTest.java</exclude> + </excludes> </configuration> </plugin>
