From cc2bb7b21aa9717d0525059b8e1b424236420f06 Mon Sep 17 00:00:00 2001 From: Koundinya Veluri Date: Mon, 17 Sep 2018 12:20:17 -0700 Subject: [PATCH] Fix perf scenarios in the min_opt config - The appropriate environment variables were not being set due to a name mismatch --- tests/scripts/run-xunit-perf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/run-xunit-perf.py b/tests/scripts/run-xunit-perf.py index f9b5690da0e4..0e48a2f697ff 100755 --- a/tests/scripts/run-xunit-perf.py +++ b/tests/scripts/run-xunit-perf.py @@ -455,7 +455,7 @@ def main(args): build_perfharness(coreclrRepo, sandboxDir, extension, myEnv) # Set up environment for running tests - if optLevel == 'min_opts': + if optLevel == 'min_opt': myEnv['COMPlus_JITMinOpts'] = '1' myEnv['COMPlus_TieredCompilation'] = '0' elif optLevel == 'full_opt':