Fix tiered compilation option for case-sensitive systems (#19567)
authorAndy Ayers <andya@microsoft.com>
Tue, 21 Aug 2018 01:38:30 +0000 (18:38 -0700)
committerGitHub <noreply@github.com>
Tue, 21 Aug 2018 01:38:30 +0000 (18:38 -0700)
tests/scripts/run-xunit-perf.py

index ac5de7b..f9b5690 100755 (executable)
@@ -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'