Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2014-10-19 00:15:15 +0000
committerDavid Williams2014-10-19 00:15:15 +0000
commit97d3c25456407709f3c3dd8dbc7c450874e1b181 (patch)
tree651173433daa91fd080c072d090984e3e16155db /production/testScripts/genTestIndexes.xml
parentf264ee76f482fd95093925e8a4353f11702713a5 (diff)
downloadeclipse.platform.releng.aggregator-97d3c25456407709f3c3dd8dbc7c450874e1b181.tar.gz
eclipse.platform.releng.aggregator-97d3c25456407709f3c3dd8dbc7c450874e1b181.tar.xz
eclipse.platform.releng.aggregator-97d3c25456407709f3c3dd8dbc7c450874e1b181.zip
[releng] Preparation to run performance baselines
Diffstat (limited to 'production/testScripts/genTestIndexes.xml')
-rw-r--r--production/testScripts/genTestIndexes.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/production/testScripts/genTestIndexes.xml b/production/testScripts/genTestIndexes.xml
index 76f9b4e0f..15a0498d2 100644
--- a/production/testScripts/genTestIndexes.xml
+++ b/production/testScripts/genTestIndexes.xml
@@ -23,6 +23,30 @@
]]>
</script>
+ <!-- Note: results template is selected based on
+ conventions used in hudson jobs names. Should
+ move to properties saved in during test run?
+ -->
+ <condition
+ property="testTemplate"
+ value="perfBaselineAltResults.php.template">
+ <and>
+ <isset property="job" />
+ <contains
+ string="${job}"
+ substring="-baselineAlt" />
+ </and>
+ </condition>
+ <condition
+ property="testTemplate"
+ value="perfBaselineResults.php.template">
+ <and>
+ <isset property="job" />
+ <contains
+ string="${job}"
+ substring="-baseline" />
+ </and>
+ </condition>
<condition
property="testTemplate"
value="perfResults.php.template"

Back to the top