Author: davsclaus Date: Mon Apr 8 15:36:50 2013 New Revision: 1465668 URL: http://svn.apache.org/r1465668 Log: skip tests which cant run on aix properly
Modified: camel/branches/camel-2.10.x/ (props changed) camel/branches/camel-2.10.x/components/camel-mongodb/pom.xml Propchange: camel/branches/camel-2.10.x/ ------------------------------------------------------------------------------ Merged /camel/trunk:r1465667 Propchange: camel/branches/camel-2.10.x/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: camel/branches/camel-2.10.x/components/camel-mongodb/pom.xml URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/components/camel-mongodb/pom.xml?rev=1465668&r1=1465667&r2=1465668&view=diff ============================================================================== --- camel/branches/camel-2.10.x/components/camel-mongodb/pom.xml (original) +++ camel/branches/camel-2.10.x/components/camel-mongodb/pom.xml Mon Apr 8 15:36:50 2013 @@ -76,4 +76,19 @@ </dependency> </dependencies> + <!-- skip tests on AIX --> + <profiles> + <profile> + <id>aix</id> + <activation> + <os> + <family>AIX</family> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> + </profiles> + </project>