summaryrefslogtreecommitdiff
path: root/tests/runtest.cmd
diff options
context:
space:
mode:
authorRahul Kumar <rahku@microsoft.com>2016-03-23 12:57:40 -0700
committerRahul Kumar <rahku@microsoft.com>2016-03-23 14:24:59 -0700
commit7e0dc3299d8a6beec3b03eb06c54d2ad50eef636 (patch)
tree826723db0bb8425067d844e0ec7f309642fa4e40 /tests/runtest.cmd
parent07d75e16770635768c063d7626c218de79ab6ee3 (diff)
downloadcoreclr-7e0dc3299d8a6beec3b03eb06c54d2ad50eef636.tar.gz
coreclr-7e0dc3299d8a6beec3b03eb06c54d2ad50eef636.tar.bz2
coreclr-7e0dc3299d8a6beec3b03eb06c54d2ad50eef636.zip
Fix XunitWrapper log file generation
Diffstat (limited to 'tests/runtest.cmd')
-rw-r--r--tests/runtest.cmd12
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd
index 35ff794b34..11acdd915b 100644
--- a/tests/runtest.cmd
+++ b/tests/runtest.cmd
@@ -256,14 +256,16 @@ endlocal & set __IsGCTest=%__Result%
if "%__IsGCTest%"=="true" (
call tests\setup-runtime-dependencies.cmd /outputdir %CORE_ROOT%
)
-call :msbuild "%__ProjectFilesDir%\runtest.proj" /p:GeneraRuntimeLayout=true
-echo %__MsgPrefix% Created the runtime layout with all dependencies in:%CORE_ROOT%
-exit /b 0
-
+set __BuildLogRootName=Tests_GenerateRuntimeLayout
+call :msbuild "%__ProjectFilesDir%\runtest.proj" /p:GenerateRuntimeLayout=true
if errorlevel 1 (
- echo Test Depenedevy Resolution Failed
+ echo Test Dependency Resolution Failed
exit /b 1
)
+echo %__MsgPrefix% Created the runtime layout with all dependencies in %CORE_ROOT%
+exit /b 0
+
+
:Usage
echo.