diff options
author | Michelle McDaniel <adiaaida@gmail.com> | 2017-02-21 11:35:04 -0800 |
---|---|---|
committer | adiaaida <adiaaida@gmail.com> | 2017-02-21 17:34:59 -0800 |
commit | be7cd4d6b59d65b5a74feb8a698b90b641732cec (patch) | |
tree | bc3f47ef082447cedee25bb27f7b48893da55a68 /perf.groovy | |
parent | 6fbc4b8484c8259a4a8ff1ca985a52c9ab559e69 (diff) | |
download | coreclr-be7cd4d6b59d65b5a74feb8a698b90b641732cec.tar.gz coreclr-be7cd4d6b59d65b5a74feb8a698b90b641732cec.tar.bz2 coreclr-be7cd4d6b59d65b5a74feb8a698b90b641732cec.zip |
Fix x86 perf testing
We did not use a different architecture in run-xunit-perf.cmd, so all the
x86 runs were uploading to the same architecture. This change fixes it so
x86jit32 runs upload to their own architecture. Also fixes the delayed
expansion issue for testenv.
Diffstat (limited to 'perf.groovy')
-rw-r--r-- | perf.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perf.groovy b/perf.groovy index 3561e086a3..f1daa2647b 100644 --- a/perf.groovy +++ b/perf.groovy @@ -74,8 +74,8 @@ def static getOSGroup(def os) { batchFile("py \"%WORKSPACE%\\Microsoft.BenchView.JSONFormat\\tools\\machinedata.py\"") batchFile("set __TestIntermediateDir=int&&build.cmd ${configuration} ${architecture}") batchFile("tests\\runtest.cmd ${configuration} ${architecture} GenerateLayoutOnly") - batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${architecture} -configuration ${configuration} ${testEnv} -testBinLoc bin\\tests\\Windows_NT.${architecture}.${configuration}\\performance\\perflab\\Perflab -library -uploadToBenchview \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" -runtype ${runType}") - batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${architecture} -configuration ${configuration} ${testEnv} -testBinLoc bin\\tests\\Windows_NT.${architecture}.${configuration}\\Jit\\Performance\\CodeQuality -uploadToBenchview \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" -runtype ${runType}") + batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} ${testEnv} -testBinLoc bin\\tests\\Windows_NT.${architecture}.${configuration}\\performance\\perflab\\Perflab -library -uploadToBenchview \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" -runtype ${runType}") + batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} ${testEnv} -testBinLoc bin\\tests\\Windows_NT.${architecture}.${configuration}\\Jit\\Performance\\CodeQuality -uploadToBenchview \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" -runtype ${runType}") } } |