Changed the surefire fork mode to make sure the blueprint tests can be passed
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c59092e5 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c59092e5 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c59092e5 Branch: refs/heads/master Commit: c59092e50c43b294bc4ecea424281e450ed18d97 Parents: d33db16 Author: Willem Jiang <ningji...@apache.org> Authored: Fri Jun 7 21:13:56 2013 +0800 Committer: Willem Jiang <ningji...@apache.org> Committed: Sun Jun 9 08:56:34 2013 +0800 ---------------------------------------------------------------------- components/camel-test-blueprint/pom.xml | 11 ++++++++++- .../BlueprintProduceConsumeImplicitPropertyTest.java | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c59092e5/components/camel-test-blueprint/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-test-blueprint/pom.xml b/components/camel-test-blueprint/pom.xml index d39c9e2..6843f8d 100644 --- a/components/camel-test-blueprint/pom.xml +++ b/components/camel-test-blueprint/pom.xml @@ -163,5 +163,14 @@ </dependency> </dependencies> - + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <forkMode>pertest</forkMode> + </configuration> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/camel/blob/c59092e5/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintProduceConsumeImplicitPropertyTest.java ---------------------------------------------------------------------- diff --git a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintProduceConsumeImplicitPropertyTest.java b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintProduceConsumeImplicitPropertyTest.java index e90450e..536cf74 100644 --- a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintProduceConsumeImplicitPropertyTest.java +++ b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintProduceConsumeImplicitPropertyTest.java @@ -16,7 +16,7 @@ */ package org.apache.camel.test.blueprint; -import org.junit.Ignore; +//import org.junit.Ignore; import org.junit.Test; /** @@ -30,7 +30,7 @@ public class BlueprintProduceConsumeImplicitPropertyTest extends CamelBlueprintT } @Test - @Ignore("Test fails. Fix Me!") + //@Ignore("Test fails. Fix Me!") public void testImplicit() throws Exception { getMockEndpoint("mock:result").expectedMessageCount(1);