summaryrefslogtreecommitdiff
path: root/tests/buildtest.cmd
diff options
context:
space:
mode:
authorRama Krishnan Raghupathy <ramarag@microsoft.com>2016-01-20 20:05:04 -0800
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2016-01-21 13:34:37 -0800
commit138cb906f283e0ae4a8b73cfe02c97c5b494b8fa (patch)
tree08a25407b92ce2eff608e4192151b93b7c900b29 /tests/buildtest.cmd
parent17cf0eae0414c01c33af403cc54bb37cf3b84016 (diff)
downloadcoreclr-138cb906f283e0ae4a8b73cfe02c97c5b494b8fa.tar.gz
coreclr-138cb906f283e0ae4a8b73cfe02c97c5b494b8fa.tar.bz2
coreclr-138cb906f283e0ae4a8b73cfe02c97c5b494b8fa.zip
Fixes the test intermediates layout for clean builds
Diffstat (limited to 'tests/buildtest.cmd')
-rw-r--r--tests/buildtest.cmd6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/buildtest.cmd b/tests/buildtest.cmd
index f7a02ec608..96d13371f3 100644
--- a/tests/buildtest.cmd
+++ b/tests/buildtest.cmd
@@ -87,12 +87,12 @@ if %__verbosity%==detailed (
echo %__MsgPrefix%Commencing CoreCLR repo test build
set "__BinDir=%__RootBinDir%\Product\%__BuildOS%.%__BuildArch%.%__BuildType%"
-set "__TestBinDir=%__RootBinDir%\tests\%__BuildOS%.%__BuildArch%.%__BuildType%"
+set "__TestBinDir=%__RootBinDir%\tests\%__BuildOS%.%__BuildArch%.%__BuildType%\"
:: We have different managed and native intermediate dirs because the managed bits will include
:: the configuration information deeper in the intermediates path.
:: These variables are used by the msbuild project files.
-set "__NativeTestIntermediatesDir=%__RootBinDir%\tests\obj\%__BuildOS%.%__BuildArch%.%__BuildType%"
-set "__ManagedTestIntermediatesDir=%__RootBinDir%\tests\obj"
+set "__NativeTestIntermediatesDir=%__RootBinDir%\tests\obj\%__BuildOS%.%__BuildArch%.%__BuildType%\Native"
+set "__ManagedTestIntermediatesDir=%__RootBinDir%\tests\obj\%__BuildOS%.%__BuildArch%.%__BuildType%\Managed"
:: Generate path to be set for CMAKE_INSTALL_PREFIX to contain forward slash
set "__CMakeBinDir=%__TestBinDir%"