diff options
author | Paul Pazderski | 2019-11-26 20:47:29 +0000 |
---|---|---|
committer | Sravan Kumar Lakkimsetti | 2019-11-27 05:47:42 +0000 |
commit | 972cc986e62805523b69f7c4f249e6cc32082f5e (patch) | |
tree | 64476ac8dcf5d8b04d13c4f7090285590bac19ab /production | |
parent | da04a48404dc610ff763ab057c610fd81024bbd8 (diff) | |
download | eclipse.platform.releng.aggregator-972cc986e62805523b69f7c4f249e6cc32082f5e.tar.gz eclipse.platform.releng.aggregator-972cc986e62805523b69f7c4f249e6cc32082f5e.tar.xz eclipse.platform.releng.aggregator-972cc986e62805523b69f7c4f249e6cc32082f5e.zip |
Bug 553179 - Fix baseline performance test version string
Apparently the performance result generation tool need the baseline
version string to start with a letter.
Change-Id: I62779201c1509a23c43baf92a2092721d951f5a8
Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
Diffstat (limited to 'production')
-rw-r--r-- | production/testScripts/configuration/streamSpecific.properties | 3 | ||||
-rwxr-xr-x | production/testScripts/updateTestResultsPages.sh | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/production/testScripts/configuration/streamSpecific.properties b/production/testScripts/configuration/streamSpecific.properties index 83dc935c7..5ace9bd0b 100644 --- a/production/testScripts/configuration/streamSpecific.properties +++ b/production/testScripts/configuration/streamSpecific.properties @@ -35,7 +35,8 @@ apiTestsPreviousRefererenceWin32Filename=obsoleteAndNotUsed # are specified. The baselinePerf will often be the same as "previous release", but # not necessarily, so is not hard coded in assumptions. baselinePerfLocation=http://${DOWNLOAD_HOST}/eclipse/downloads/drops4/R-4.13-201909161045 -baselinePerfVersion=4.13-201909161045 +# NOTE: value must match baselineCode in testScripts/updateTestResultsPages.sh +baselinePerfVersion=R-4.13-201909161045 # TODO: could/should eventually "compute" label, from full version? baselinePerfVersionLabel=4.13 baselinePerfBuildId=I20190916-1045 diff --git a/production/testScripts/updateTestResultsPages.sh b/production/testScripts/updateTestResultsPages.sh index 0e9da43e3..9ddb8a6b5 100755 --- a/production/testScripts/updateTestResultsPages.sh +++ b/production/testScripts/updateTestResultsPages.sh @@ -313,6 +313,7 @@ then RAW_DATE_START=$( date -u +%s ) # TODO: avoid this hard coding of baseline value + # NOTE: value must start with a letter match baselinePerfVersion in testScripts/configuration/streamSpecific.properties baselineCode="R-4.13-201909161045" # to get time stamp, first remove initial IMN: baselineForBuildSuffix=${buildId/[IMN]/} |