Skip the mongodb unit test in HP-UX as there is no embed.mongo support
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/98ff00b3 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/98ff00b3 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/98ff00b3 Branch: refs/heads/master Commit: 98ff00b3d5a004ed5f1c8d3d316ba7f7ae6b1935 Parents: 9d7b2d5 Author: Willem Jiang <[email protected]> Authored: Tue Apr 14 11:55:57 2015 +0800 Committer: Willem Jiang <[email protected]> Committed: Tue Apr 14 13:49:20 2015 +0800 ---------------------------------------------------------------------- components/camel-mongodb/pom.xml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/98ff00b3/components/camel-mongodb/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-mongodb/pom.xml b/components/camel-mongodb/pom.xml index a4e1310..13f2db6 100644 --- a/components/camel-mongodb/pom.xml +++ b/components/camel-mongodb/pom.xml @@ -79,7 +79,7 @@ </dependency> </dependencies> - <!-- skip tests on AIX --> + <!-- skip tests on AIX and HP-UX --> <profiles> <profile> <id>aix</id> @@ -92,6 +92,17 @@ <skipTests>true</skipTests> </properties> </profile> + <profile> + <id>hpux</id> + <activation> + <os> + <family>HP-UX</family> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project>
