Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'production/sdk/collectTestResults.xml')
-rw-r--r--production/sdk/collectTestResults.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/production/sdk/collectTestResults.xml b/production/sdk/collectTestResults.xml
index 348c60ff9..b3326456f 100644
--- a/production/sdk/collectTestResults.xml
+++ b/production/sdk/collectTestResults.xml
@@ -27,7 +27,7 @@
<globmapper from="archive/workarea/${buildId}/eclipse-testing/results/*" to="*" />
</unzip>
- <exec executable="/bin/bash">
+ <exec executable="/bin/bash" failonerror="true">
<arg line="/shared/eclipse/sdk/promotion/updateDropLocation.sh ${eclipseStream} ${buildId} ${EBUILDER_HASH} ${job}" />
</exec>
@@ -122,15 +122,15 @@
<echo message="postingDirectory: ${postingDirectory}" />
- <!--
- Three possible results directories, per platform/build/job (two related to performance tests, one for regular unit tests).
+ <!--
+ Three possible results directories, per platform/build/job (two related to performance tests, one for regular unit tests).
All of these asssume following naming conventions in Hudson jobs. TODO: in future could/should have properties
that describe the tests anyway, so might want to use that, to deside results directories.Currently:
ends with -baseline: perfBaselineresults
contains -perf- : perfresults
else: testresults
The first two both contain '-perf-' so important to look for '-baseline' first.
- The last we assume by default is unit tests, but those jobs should contain '-unit-' if
+ The last we assume by default is unit tests, but those jobs should contain '-unit-' if
we ever wanted tighter checking that names were as expected.
-->
<condition property="resultsDir" value="${postingDirectory}/${buildId}/perfBaselineresults">

Back to the top