|
From: <tho...@us...> - 2013-11-06 18:39:48
|
Revision: 7513
http://bigdata.svn.sourceforge.net/bigdata/?rev=7513&view=rev
Author: thompsonbry
Date: 2013-11-06 18:39:41 +0000 (Wed, 06 Nov 2013)
Log Message:
-----------
Fixed case-based spelling error in the HATest.dir property name that was preventing CI builds from succeeding on EC2.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-06 16:12:07 UTC (rev 7512)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-06 18:39:41 UTC (rev 7513)
@@ -1992,8 +1992,8 @@
<mkdir dir="${test.results.dir}" />
<!-- Clear out the old HA test suite logs. -->
- <property name="HAtest.dir" location="benchmark/CI-HAJournal-1" />
- <delete dir="${HAtest.dir}" quiet="true" />
+ <property name="HATest.dir" location="benchmark/CI-HAJournal-1" />
+ <delete dir="${HATest.dir}" quiet="true" />
<mkdir dir="${HATest.dir}" />
<condition property="testClass" value="${testName}">
@@ -2187,7 +2187,7 @@
<tar destfile="${test.results.dir}/report.tgz" basedir="${test.results.dir}/report" compression="gzip"/>
<!-- Archive the HA test suite output logs. -->
- <tar destfile="${test.results.dir}/HAtest-report.tgz" basedir="${HAtest.dir}" compression="gzip"/>
+ <tar destfile="${test.results.dir}/HAtest-report.tgz" basedir="${HATest.dir}" compression="gzip"/>
</target>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|