diff options
author | jashook <jashoo@microsoft.com> | 2017-05-05 11:10:12 -0700 |
---|---|---|
committer | jashook <jashoo@microsoft.com> | 2017-05-11 12:52:23 -0700 |
commit | 9004feee78284250c0193fc816eb0313231dd6ab (patch) | |
tree | dc3451c5cbc46e087ff0dafcfbeb28b7f0f2e11e /tests/runtest.cmd | |
parent | c84237673b6167ee964ba6bea00041dac9dca3e2 (diff) | |
download | coreclr-9004feee78284250c0193fc816eb0313231dd6ab.tar.gz coreclr-9004feee78284250c0193fc816eb0313231dd6ab.tar.bz2 coreclr-9004feee78284250c0193fc816eb0313231dd6ab.zip |
Windows Arm64 - Build/Run tests in CI
Build tests with arm64 runs and upload/run them to the arm64 test
machines.
Diffstat (limited to 'tests/runtest.cmd')
-rw-r--r-- | tests/runtest.cmd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd index 6d8728332b..d500c53289 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -60,6 +60,7 @@ if /i "%1" == "-help" goto Usage if /i "%1" == "x64" (set __BuildArch=x64&set __MSBuildBuildArch=x64&shift&goto Arg_Loop) if /i "%1" == "x86" (set __BuildArch=x86&set __MSBuildBuildArch=x86&shift&goto Arg_Loop) if /i "%1" == "arm" (set __BuildArch=arm&set __MSBuildBuildArch=arm&shift&goto Arg_Loop) +if /i "%1" == "arm64" (set __BuildArch=arm64&set __MSBuildBuildArch=arm64&shift&goto Arg_Loop) if /i "%1" == "debug" (set __BuildType=Debug&shift&goto Arg_Loop) if /i "%1" == "release" (set __BuildType=Release&shift&goto Arg_Loop) @@ -201,6 +202,8 @@ call :PrecompileFX :SkipPrecompileFX if defined __GenerateLayoutOnly ( + REM Delete the unecessary mscorlib.ni file. + del %CORE_ROOT%\mscorlib.ni.dll exit /b 0 ) @@ -235,6 +238,7 @@ if "%__CollectDumps%"=="true" ( echo %__MsgPrefix%CORE_ROOT that will be used is: %CORE_ROOT% echo %__MsgPrefix%Starting the test run ... +REM Delete the unecessary mscorlib.ni file. del %CORE_ROOT%\mscorlib.ni.dll set __BuildLogRootName=TestRunResults |