diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index eb4b5c276bcd162250e528a0b1b65bc238118b16..8b76193cbe1bf676f0957775750420fd6a665b44 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -1039,7 +1039,7 @@ def _check_arch_option(arch): def _windows_build_bat(compiler): """Returns name of build.bat for selected compiler.""" # For CoreCLR, fall back to the default compiler for C core - if compiler == 'default' or compiler == 'vs2013' or compiler == 'coreclr': + if compiler == 'default' or compiler == 'vs2013': return 'vsprojects\\build_vs2013.bat' elif compiler == 'vs2015': return 'vsprojects\\build_vs2015.bat'