You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2012/11/10 11:45:00 UTC

svn commit: r1407751 - in /camel/branches/camel-2.10.x: ./ components/camel-atom/ components/camel-atom/pom.xml

Author: davsclaus
Date: Sat Nov 10 10:44:59 2012
New Revision: 1407751

URL: http://svn.apache.org/viewvc?rev=1407751&view=rev
Log:
Skip tests on AIX

Modified:
    camel/branches/camel-2.10.x/   (props changed)
    camel/branches/camel-2.10.x/components/camel-atom/   (props changed)
    camel/branches/camel-2.10.x/components/camel-atom/pom.xml

Propchange: camel/branches/camel-2.10.x/
------------------------------------------------------------------------------
  Merged /camel/trunk:r1407750

Propchange: camel/branches/camel-2.10.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Propchange: camel/branches/camel-2.10.x/components/camel-atom/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Sat Nov 10 10:44:59 2012
@@ -14,3 +14,4 @@ eclipse-classes
 *.ipr
 *.iml
 *.iws
+*.idea

Modified: camel/branches/camel-2.10.x/components/camel-atom/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/components/camel-atom/pom.xml?rev=1407751&r1=1407750&r2=1407751&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/components/camel-atom/pom.xml (original)
+++ camel/branches/camel-2.10.x/components/camel-atom/pom.xml Sat Nov 10 10:44:59 2012
@@ -201,6 +201,21 @@
     </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>