[jboss-svn-commits] JBL Code SVN: r31399 - labs/jbosstm/workspace/whitingjr/trunk/performance.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Feb 4 07:09:20 EST 2010


Author: whitingjr
Date: 2010-02-04 07:09:19 -0500 (Thu, 04 Feb 2010)
New Revision: 31399

Modified:
   labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml
Log:
Fixed mistake in the file names copying.


Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml	2010-02-04 11:58:52 UTC (rev 31398)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml	2010-02-04 12:09:19 UTC (rev 31399)
@@ -415,7 +415,7 @@
 			<param name="db-vendor-package.B" expression="${db-vendor-package.xpath.B}" />
 		</xslt>
 
-		<copy file="logs/profiled/DATE-TIME-profile.xml" tofile="logs/${DSTAMP}/${DSTAMP}-${time-stamp}/${DSTAMP}-${TSTAMP}-${resource.A.db.vendor}-${resource.B.db.vendor}-profile-raw.xml" />
+		<copy file="logs/profiled/DATE-TIME-profile.xml" tofile="logs/${DSTAMP}/${DSTAMP}-${time-stamp}/${DSTAMP}-${time-stamp}-${resource.A.db.vendor}-${resource.B.db.vendor}-profile-raw.xml" />
 
 	</target>
 
@@ -480,7 +480,20 @@
 		<copy file="logs/profiled/DATE-TIME-profile.xml" tofile="logs/${date}/${datetime}/${DSTAMP}-${TSTAMP}-${resource.A.db.vendor}-${resource.B.db.vendor}-profile-raw.xml" />
 
 	</target>
+	
+	<target name="concat-data">
+		<property name="logs-dir-base" value="/home/whitingjr/tsperf/logs/20100203"/>
+		
+		<concat destfile="${logs-dir-base}/csv-data.csv">
+		   <path>
+		   	<fileset dir="${logs-dir-base}">
+		   	   <include name="**/*.csv"/>
+		   	</fileset>
+		   </path>
+		</concat>
 
+	</target>
+
 </project>
 
 



More information about the jboss-svn-commits mailing list