summaryrefslogtreecommitdiff
path: root/tests/src/runonly.targets
diff options
context:
space:
mode:
authorAaron Robinson <arobins@microsoft.com>2018-09-12 19:34:46 -0700
committerGitHub <noreply@github.com>2018-09-12 19:34:46 -0700
commit5699a504640a322935f7f57f3ea627cee494c804 (patch)
treec629d16fdde3a5c12950770f14ba2f8412ceecd0 /tests/src/runonly.targets
parent7b18dcc33400b3e2f314a10228f2520e031ee01b (diff)
downloadcoreclr-5699a504640a322935f7f57f3ea627cee494c804.tar.gz
coreclr-5699a504640a322935f7f57f3ea627cee494c804.tar.bz2
coreclr-5699a504640a322935f7f57f3ea627cee494c804.zip
Address msbuild issues with cross compiled tests in helix (#19901)
* Address msbuild issues with cross compiled tests in helix * Fix test warning about duplicate types
Diffstat (limited to 'tests/src/runonly.targets')
-rw-r--r--tests/src/runonly.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/runonly.targets b/tests/src/runonly.targets
index 2e01bc7ec8..9ae83c648a 100644
--- a/tests/src/runonly.targets
+++ b/tests/src/runonly.targets
@@ -5,7 +5,7 @@
<Target Name="CoreCompile" />
<!-- if this is a RunOnly project that has been scheduled to build, make the output directory and build any dependent projects -->
- <Target Name="Build" Condition="('$(CLRTestKind)'=='RunOnly') And '$(_WillCLRTestProjectBuild)'">
+ <Target Name="Build" Condition="('$(CLRTestKind)'=='RunOnly') And '$(_WillCLRTestProjectBuild)' == 'true'">
<MSBuild Projects="@(ProjectReference)" />
<MakeDir ContinueOnError="false" Directories="$(OutputPath)" />
</Target>