summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorDrew Scoggins <anscoggi@microsoft.com>2017-05-05 16:07:27 -0700
committerDrew Scoggins <anscoggi@microsoft.com>2017-05-05 16:18:16 -0700
commit1e14842f722c9e9335c0e709fc6ffbbd9cb81381 (patch)
treec2a87ed02384b340a717bba934c8a0538397a438 /perf.groovy
parent060dc1d1e6d89d999f0741e5daf99f5fa564772f (diff)
downloadcoreclr-1e14842f722c9e9335c0e709fc6ffbbd9cb81381.tar.gz
coreclr-1e14842f722c9e9335c0e709fc6ffbbd9cb81381.tar.bz2
coreclr-1e14842f722c9e9335c0e709fc6ffbbd9cb81381.zip
Fix typo in perf.groovy
Had a typo where I was passing deafult instead of default as a flag to the collection harness. This fixes that.
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/perf.groovy b/perf.groovy
index 8dfcabc43d..27aef34335 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -109,8 +109,8 @@ def static getOSGroup(def os) {
batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\Jit\\Performance\\CodeQuality -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -runtype ${runType}")
// Run with the full set of counters enabled
- batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\performance\\perflab\\Perflab -library -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -runtype ${runType} -collectionFlags deafult+BranchMispredictions+CacheMisses+InstructionRetired+gcapi")
- batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\Jit\\Performance\\CodeQuality -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -runtype ${runType} -collectionFlags deafult+BranchMispredictions+CacheMisses+InstructionRetired+gcapi")
+ batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\performance\\perflab\\Perflab -library -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -runtype ${runType} -collectionFlags default+BranchMispredictions+CacheMisses+InstructionRetired+gcapi")
+ batchFile("tests\\scripts\\run-xunit-perf.cmd -arch ${arch} -configuration ${configuration} -testBinLoc bin\\tests\\${os}.${architecture}.${configuration}\\Jit\\Performance\\CodeQuality -generateBenchviewData \"%WORKSPACE%\\Microsoft.Benchview.JSONFormat\\tools\" ${uploadString} -runtype ${runType} -collectionFlags default+BranchMispredictions+CacheMisses+InstructionRetired+gcapi")
}
}