summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRahul Kumar <rahku@microsoft.com>2016-03-23 14:50:46 -0700
committerRahul Kumar <rahku@microsoft.com>2016-03-23 14:50:46 -0700
commit79960124b1575e35a513df91f6ab34894733f3fb (patch)
treeb8449f98f484601d5e652b0a5de666bd762594d8 /tests
parent3a90116acc529aaf89d1ebf466259d5b47063fba (diff)
parent7e0dc3299d8a6beec3b03eb06c54d2ad50eef636 (diff)
downloadcoreclr-79960124b1575e35a513df91f6ab34894733f3fb.tar.gz
coreclr-79960124b1575e35a513df91f6ab34894733f3fb.tar.bz2
coreclr-79960124b1575e35a513df91f6ab34894733f3fb.zip
Merge pull request #3887 from rahku/master
Fix XunitWrapper log file generation
Diffstat (limited to 'tests')
-rw-r--r--tests/runtest.cmd12
-rw-r--r--tests/runtest.proj2
2 files changed, 8 insertions, 6 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.
diff --git a/tests/runtest.proj b/tests/runtest.proj
index 51fa2cfe1e..18937f962c 100644
--- a/tests/runtest.proj
+++ b/tests/runtest.proj
@@ -433,7 +433,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
<MSBuild Projects="$(MSBuildProjectFile)"
Targets="CreateTestOverlay"
- Condition=" '$(GeneraRuntimeLayout)'=='true' "/>
+ Condition=" '$(GenerateRuntimeLayout)'=='true' "/>
<MSBuild Projects="$(MSBuildProjectFile)" Targets="RunTests"
Condition=" '$(RunTests)'=='true' "/>