[jboss-svn-commits] JBL Code SVN: r35347 - labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Sep 29 06:50:10 EDT 2010


Author: whitingjr
Date: 2010-09-29 06:50:10 -0400 (Wed, 29 Sep 2010)
New Revision: 35347

Modified:
   labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml
Log:
Added task to generate jps file.

Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml	2010-09-29 10:01:36 UTC (rev 35346)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml	2010-09-29 10:50:10 UTC (rev 35347)
@@ -45,11 +45,21 @@
          <include name="*.jps" />
       </fileset>
    </path>
-
+	
+	<path id="output.results.file">
+      <fileset dir="${output.directory}">
+         <include name="**/.jps" />
+      </fileset>
+   </path>
+   
    <taskdef name="regression" classname="org.jboss.profiler.ant.RegressionTask" classpathref="jbossprofiler.ant.task.classpath"/>
+	<taskdef name="save" classname="org.jboss.profiler.ant.SaveTask" classpathref="jbossprofiler.ant.task.classpath"/>
 
    <target name="process-profiling-data">
       <pathconvert property="profiler.snapshot.filename" refid="initial.path.jps.file" setonempty="false"/>
+   	
+   	<antcall target="save" inheritall="true"/>
+   	
       <condition property="snapshot.file.isAvailable">
          <available file="${profiler.snapshot.filename}"/>
       </condition>
@@ -75,5 +85,10 @@
          <arg value="${output.profiler.snapshot.filename}"/>
       </java>
    </target>
+	
+	<!-- Create several properties with the value for the percentage. -->
+	<target name="extract-timings">
+	   
+   </target>
 
 </project>
\ No newline at end of file



More information about the jboss-svn-commits mailing list