From 61967effdb1a2fa3a47074b183ae96df79c8aa3a Mon Sep 17 00:00:00 2001 From: Andy Ayers Date: Mon, 20 Aug 2018 18:38:30 -0700 Subject: [PATCH] Fix tiered compilation option for case-sensitive systems (#19567) --- tests/scripts/run-xunit-perf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/run-xunit-perf.py b/tests/scripts/run-xunit-perf.py index ac5de7b..f9b5690 100755 --- a/tests/scripts/run-xunit-perf.py +++ b/tests/scripts/run-xunit-perf.py @@ -457,9 +457,9 @@ def main(args): # Set up environment for running tests if optLevel == 'min_opts': myEnv['COMPlus_JITMinOpts'] = '1' - myEnv['COMPLUS_TieredCompilation'] = '0' + myEnv['COMPlus_TieredCompilation'] = '0' elif optLevel == 'full_opt': - myEnv['COMPLUS_TieredCompilation'] = '0' + myEnv['COMPlus_TieredCompilation'] = '0' if not 'XUNIT_PERFORMANCE_MAX_ITERATION' in myEnv: myEnv['XUNIT_PERFORMANCE_MAX_ITERATION'] = '21' -- 2.7.4