You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/11/30 09:48:12 UTC

svn commit: r885365 - in /incubator/kato/trunk/org.apache.kato/kato.tck/execution: cjvmti/pom.xml pom.xml

Author: spoole
Date: Mon Nov 30 09:48:11 2009
New Revision: 885365

URL: http://svn.apache.org/viewvc?rev=885365&view=rev
Log:
added hprof test execution for Sun JVMs.  Also redid profile activation checks to be based on os name.

Modified:
    incubator/kato/trunk/org.apache.kato/kato.tck/execution/cjvmti/pom.xml
    incubator/kato/trunk/org.apache.kato/kato.tck/execution/pom.xml

Modified: incubator/kato/trunk/org.apache.kato/kato.tck/execution/cjvmti/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck/execution/cjvmti/pom.xml?rev=885365&r1=885364&r2=885365&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck/execution/cjvmti/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.tck/execution/cjvmti/pom.xml Mon Nov 30 09:48:11 2009
@@ -81,10 +81,10 @@
 		<profile>
 			<id>linux-x86</id>
 			<activation>
-				<os>
-					<family>unix</family>
-					<arch>i386</arch>
-				</os>
+				<property>
+				<name>os.name</name>
+				<value>Linux</value>
+				</property>
 			</activation>
 			<properties>
 				<cjvmti.groupid>org.apache.kato.native</cjvmti.groupid>

Modified: incubator/kato/trunk/org.apache.kato/kato.tck/execution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck/execution/pom.xml?rev=885365&r1=885364&r2=885365&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck/execution/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.tck/execution/pom.xml Mon Nov 30 09:48:11 2009
@@ -29,9 +29,31 @@
   <packaging>pom</packaging>
   <name>Execute TCK against default implementations</name>
   <version>M1-incubating</version>
+  <profiles>
+  <profile>
+   	<id>ibm-jvm</id>
+    <activation>
+      <property>
+        <name>ibm.system.encoding</name>
+      </property>
+    </activation>
+    <modules>
+  		<module>cjvmti</module>
+  	</modules>
+  </profile>
+  <profile>
+   	<id>sun-jvm</id>
+    <activation>
+   
+      <activeByDefault>true</activeByDefault>
+   
+    </activation>
+    <modules>
+  		<module>cjvmti</module>
+  		<module>hprof</module>
+  	</modules>
+  </profile>
+  
+  </profiles>
   
-  <modules>
-  <module>cjvmti</module>
-  <module>hprof</module>
-  </modules>
 </project>