Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit a40b631

Browse files
AndyAyersMSKoundinya Veluri
authored andcommitted
Fix tiered compilation option for case-sensitive systems (#19567)
Port of #19567 to 2.2
1 parent 293630e commit a40b631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/scripts/run-xunit-perf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,9 +457,9 @@ def main(args):
457457
# Set up environment for running tests
458458
if optLevel == 'min_opts':
459459
myEnv['COMPlus_JITMinOpts'] = '1'
460-
myEnv['COMPLUS_TieredCompilation'] = '0'
460+
myEnv['COMPlus_TieredCompilation'] = '0'
461461
elif optLevel == 'full_opt':
462-
myEnv['COMPLUS_TieredCompilation'] = '0'
462+
myEnv['COMPlus_TieredCompilation'] = '0'
463463

464464
if not 'XUNIT_PERFORMANCE_MAX_ITERATION' in myEnv:
465465
myEnv['XUNIT_PERFORMANCE_MAX_ITERATION'] = '21'

0 commit comments

Comments
 (0)