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/3161e05c
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/3161e05c
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/3161e05c

Branch: refs/heads/camel-2.15.x
Commit: 3161e05c8b54f9a010fcc7f8a645556c443bfc36
Parents: 2449075
Author: Willem Jiang <[email protected]>
Authored: Tue Apr 14 11:55:57 2015 +0800
Committer: Willem Jiang <[email protected]>
Committed: Tue Apr 14 14:08:12 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/3161e05c/components/camel-mongodb/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-mongodb/pom.xml b/components/camel-mongodb/pom.xml
index e02b7ea..f860e8c 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>

Reply via email to