Skip to content

Commit dfd968b

Browse files
committed
Fix typo in MSBuild condition
1 parent 1ec93be commit dfd968b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/readytorun/GenericCycleDetection/Depth3Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!-- Without this flag Crossgen2 crashes after several minutes with arithmetic overflow -->
88
<CrossGen2TestExtraArguments>--enable-generic-cycle-detection --maxgenericcycle:3 --maxgenericcyclebreadth:-1</CrossGen2TestExtraArguments>
99
<!-- This test OOMs Crossgen2 when running in 32-bit address space -->
10-
<CLRTestTargetUnsupported Condition="'$(TargetBits)' != '32'">true</CLRTestTargetUnsupported>
10+
<CLRTestTargetUnsupported Condition="'$(TargetBits)' == '32'">true</CLRTestTargetUnsupported>
1111
</PropertyGroup>
1212
<ItemGroup>
1313
<Compile Include="$(MSBuildProjectName).cs" />

0 commit comments

Comments
 (0)