Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Perez Rodriguez <joperezr@microsoft.com>2017-06-22 19:54:39 +0300
committerJose Perez Rodriguez <joperezr@microsoft.com>2017-06-22 19:54:39 +0300
commit12e277de405451c07202231934a9cd7d8f2a5c65 (patch)
tree28b3ad390fb54af0dd65f84b7789933e06fbfb95 /dir.props
parenta957acc46d97c4e8b123f3d82891f5cf563a5a17 (diff)
Enable Debug x86 uapaot test runs to be multifile
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props6
1 files changed, 3 insertions, 3 deletions
diff --git a/dir.props b/dir.props
index e543bff0a9..72055e1c14 100644
--- a/dir.props
+++ b/dir.props
@@ -246,9 +246,9 @@
</PropertyGroup>
<!-- Properties related to multi-file mode for ILC tests -->
- <PropertyGroup>
- <!-- Only enable multi-file for Uapaot-Release-x64 for now -->
- <EnableMultiFileILCTests Condition="'$(TargetGroup)' == 'uapaot' And '$(ConfigurationGroup)' == 'Release' And '$(ArchGroup)' == 'x64'">true</EnableMultiFileILCTests>
+ <PropertyGroup Condition="'$(TargetGroup)' == 'uapaot'">
+ <!-- Only enable multi-file for Release-x64 and Debug-x86 for now -->
+ <EnableMultiFileILCTests Condition="'$(ConfigurationGroup)|$(ArchGroup)' == 'Release|x64' Or '$(ConfigurationGroup)|$(ArchGroup)' == 'Debug|x86'">true</EnableMultiFileILCTests>
</PropertyGroup>
<PropertyGroup>