Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2014-11-10 07:40:23 +0000
committerDavid Williams2014-11-10 07:40:23 +0000
commit74fd9ce726e1dbf99620168b4020e390a1300863 (patch)
treecb4e4ef6a35932088cf41ad21364cbc9ce501cd3 /production/testScripts/updateTestResultsPages.sh
parent16adecaa94697e868b9f62bbb918b586b0a35049 (diff)
downloadeclipse.platform.releng.aggregator-74fd9ce726e1dbf99620168b4020e390a1300863.tar.gz
eclipse.platform.releng.aggregator-74fd9ce726e1dbf99620168b4020e390a1300863.tar.xz
eclipse.platform.releng.aggregator-74fd9ce726e1dbf99620168b4020e390a1300863.zip
Bug 444243 - Improve scripts to handle performance tests
Correct IP for Eclipse Infrastructure, and make variable.
Diffstat (limited to 'production/testScripts/updateTestResultsPages.sh')
-rwxr-xr-xproduction/testScripts/updateTestResultsPages.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/production/testScripts/updateTestResultsPages.sh b/production/testScripts/updateTestResultsPages.sh
index f53d497f5..81fb83f84 100755
--- a/production/testScripts/updateTestResultsPages.sh
+++ b/production/testScripts/updateTestResultsPages.sh
@@ -3,6 +3,9 @@
# Utility to invoke eclipse antrunner to update test index pages and
# re-sync dl site.
+# this localBuildProperties.shsource file is to ease local builds to override some variables.
+# It should not be used for production builds.
+source localBuildProperties.shsource 2>/dev/null
if (( $# < 3 ))
then
@@ -185,7 +188,8 @@ then
echo " = = Now run performance.ui app"
devworkspace="${fromDir}/workspace-updatePerfResults"
- vmargs="-Xmx256m -Declipse.perf.dbloc=//172.25.25.57:1527"
+ eclipse_perf_dbloc_value=${eclipse_perf_dbloc_value:-//172.25.25.57:1527}
+ vmargs="-Xmx256m -Declipse.perf.dbloc=${eclipse_perf_dbloc_value}"
postingDirectory=$fromDir
perfOutput=$postingDirectory/performance
# assuming for now the intent is that 'data' is meant to accumulate in common location

Back to the top