Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2018-02-19 20:31:04 +0300
committerGitHub <noreply@github.com>2018-02-19 20:31:04 +0300
commit104cae1e7e1f0a6475c7120f9b97fa5a7c6f4a41 (patch)
tree8ce3914cbd90cdef52ddb5b8f096de77256d7cd1 /tests
parent99cf34fdeaae458fed59c0b6c2b22096343eb378 (diff)
Fix build-and-run-test.cmd for VS 2017 (#5411)
We stopped supporting VS 2015 a while ago, but running CoreCLR tests didn't actually work without it because we forgot to update a place.
Diffstat (limited to 'tests')
-rw-r--r--tests/CoreCLR/build-and-run-test.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CoreCLR/build-and-run-test.cmd b/tests/CoreCLR/build-and-run-test.cmd
index 9b0feacc5..4e8b7764b 100644
--- a/tests/CoreCLR/build-and-run-test.cmd
+++ b/tests/CoreCLR/build-and-run-test.cmd
@@ -25,7 +25,7 @@ copy /Y %~dp0\Test.csproj %TestFolder%
:: so override if we're doing a 64-bit test run
::
if "%CoreRT_BuildArch%" == "x64" (
- call "%VS140COMNTOOLS%\..\..\VC\bin\amd64\vcvars64.bat"
+ call "%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" x64
)
echo msbuild /ConsoleLoggerParameters:ForceNoAlign "/p:IlcPath=%CoreRT_ToolchainDir%" "/p:Configuration=%CoreRT_BuildType%" "/p:RepoLocalBuild=true" "/p:FrameworkLibPath=%~dp0..\..\bin\%CoreRT_BuildOS%.%CoreRT_BuildArch%.%CoreRT_BuildType%\lib" "/p:FrameworkObjPath=%~dp0..\..\bin\obj\%CoreRT_BuildOS%.%CoreRT_BuildArch%.%CoreRT_BuildType%\Framework" /p:DisableFrameworkLibGeneration=true %TestFolder%\Test.csproj