Author: davsclaus Date: Wed Mar 13 14:51:08 2013 New Revision: 1455975 URL: http://svn.apache.org/r1455975 Log: Skip camel-mqtt tests on OS with sparc CPUs
Modified: camel/trunk/components/camel-mqtt/pom.xml Modified: camel/trunk/components/camel-mqtt/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-mqtt/pom.xml?rev=1455975&r1=1455974&r2=1455975&view=diff ============================================================================== --- camel/trunk/components/camel-mqtt/pom.xml (original) +++ camel/trunk/components/camel-mqtt/pom.xml Wed Mar 13 14:51:08 2013 @@ -98,4 +98,20 @@ </plugin> </plugins> </build> + + <!-- skip tests on Solaris using sparc CPUs --> + <profiles> + <profile> + <id>sparc</id> + <activation> + <os> + <arch>sparc</arch> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> + </profiles> + </project>