Skip to content

Commit

Permalink
[Tests] xunit.runner.console: Don't parse output as standard error/wa…
Browse files Browse the repository at this point in the history
…rning, otherwise it mark build as failing when such error log is output (possibly on purpose)
  • Loading branch information
xen2 committed Jun 4, 2020
1 parent 837b063 commit f3831b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Stride.build
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ Example of use:
<AssembliesToTestDefault Include="@(AssembliesToTest)" Condition="'%(AssembliesToTest.PlatformTarget)' != 'x86'"/>
<AssembliesToTestX86 Include="@(AssembliesToTest)" Condition="'%(AssembliesToTest.PlatformTarget)' == 'x86'"/>
</ItemGroup>
<Exec Condition="'@(AssembliesToTestDefault)' != ''" Command="&quot;$(XunitRunnerConsolePathDefault)&quot; @(AssembliesToTestDefault->'%(Identity)', ' ')"/>
<Exec Condition="'@(AssembliesToTestX86)' != ''" Command="&quot;$(XunitRunnerConsolePathX86)&quot; @(AssembliesToTestX86->'%(Identity)', ' ')"/>
<Exec Condition="'@(AssembliesToTestDefault)' != ''" Command="&quot;$(XunitRunnerConsolePathDefault)&quot; @(AssembliesToTestDefault->'%(Identity)', ' ')" IgnoreStandardErrorWarningFormat="true"/>
<Exec Condition="'@(AssembliesToTestX86)' != ''" Command="&quot;$(XunitRunnerConsolePathX86)&quot; @(AssembliesToTestX86->'%(Identity)', ' ')" IgnoreStandardErrorWarningFormat="true"/>
</Target>

<ItemGroup>
Expand Down

0 comments on commit f3831b9

Please sign in to comment.