summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorJosé Rivero <jorive@microsoft.com>2017-08-07 14:57:10 -0700
committerGitHub <noreply@github.com>2017-08-07 14:57:10 -0700
commita1b433ba5a609fc6bf7dc40e0650e2a073e0f1f2 (patch)
treebdf7de294031caae6359afe7b30349690c74377a /perf.groovy
parent020337d7bd3eeb4d1d7819e984f7c09b56531b95 (diff)
downloadcoreclr-a1b433ba5a609fc6bf7dc40e0650e2a073e0f1f2.tar.gz
coreclr-a1b433ba5a609fc6bf7dc40e0650e2a073e0f1f2.tar.bz2
coreclr-a1b433ba5a609fc6bf7dc40e0650e2a073e0f1f2.zip
Swaping the order of how scenarios are run. (#13255)
- Currently ILLink scenario is broken and the x64 scenario leg does not run JitBench By swaping the scenario it will let JitBench run while ILLink is being fixed.
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy5
1 files changed, 4 insertions, 1 deletions
diff --git a/perf.groovy b/perf.groovy
index 6ac5a8357f..3ffb2f223e 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -562,10 +562,13 @@ parallel(
batchFile("tests\\runtest.cmd ${configuration} ${architecture} GenerateLayoutOnly")
+ // Scenario: JitBench
+ batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\performance\\Scenario\\JitBench -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -runtype ${runType} -scenarioTest -group CoreCLR-Scenarios")
+
+ // Scenario: ILLink
if (arch == 'x64') {
batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\performance\\linkbench\\linkbench -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -nowarmup -runtype ${runType} -scenarioTest -group ILLink")
}
- batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\performance\\Scenario\\JitBench -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -runtype ${runType} -scenarioTest -group CoreCLR-Scenarios")
}
}