summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorNoah Falk <noahfalk@users.noreply.github.com>2018-03-28 13:56:24 -0700
committerGitHub <noreply@github.com>2018-03-28 13:56:24 -0700
commit9c32fda3feb190f60934ffc0de7a328e0506e367 (patch)
tree2c557dd07e716c500fe06770ffc8f7d3dab6ed60 /tests/scripts
parenta79ca6566567188a408cfcf4859286fc87e5c449 (diff)
downloadcoreclr-9c32fda3feb190f60934ffc0de7a328e0506e367.tar.gz
coreclr-9c32fda3feb190f60934ffc0de7a328e0506e367.tar.bz2
coreclr-9c32fda3feb190f60934ffc0de7a328e0506e367.zip
Removing 'EXPERIMENTAL' from tiered compilation env var (#17283)
Things have progressed far enough that its time to use a friendlier name. The feature still still has performance aspects that need to be investigated and improved, but I don't want to scare people off simply because it isn't as fast as it could be. This also updates to use a newer CoreFX version for JitBench since that appeared to be broken, and updated some comments and usage of the tieredcompilation variable.
Diffstat (limited to 'tests/scripts')
-rwxr-xr-xtests/scripts/run-xunit-perf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scripts/run-xunit-perf.py b/tests/scripts/run-xunit-perf.py
index 6e0a0bade3..3c1cb89dca 100755
--- a/tests/scripts/run-xunit-perf.py
+++ b/tests/scripts/run-xunit-perf.py
@@ -458,7 +458,7 @@ def main(args):
if optLevel == 'min_opts':
myEnv['COMPlus_JITMinOpts'] = '1'
elif optLevel == 'tiered':
- myEnv['COMPLUS_EXPERIMENTAL_TieredCompilation'] = '1'
+ myEnv['COMPLUS_TieredCompilation'] = '1'
if not 'XUNIT_PERFORMANCE_MAX_ITERATION' in myEnv:
myEnv['XUNIT_PERFORMANCE_MAX_ITERATION'] = '21'