Skip to content

Commit

Permalink
[wasm] Disable DebuggerTests.ArrayTests on helix
Browse files Browse the repository at this point in the history
Issue: dotnet#62661

Using `[Trait..` instead of `ActiveIssue` because: dotnet#62660
  • Loading branch information
radical committed Dec 10, 2021
1 parent 64c281f commit 258b051
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions src/libraries/sendtohelixhelp.proj
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,11 @@
<ItemGroup Condition="'$(Scenario)' == 'WasmDebuggerTests'">
<HelixWorkItem Include="@(WasmDebuggerTests_PerJobList)">
<PayloadArchive>$(_WasmDebuggerTestsPayloadArchive)</PayloadArchive>
<PreCommands Condition="'$(OS)' == 'Windows_NT'">set TEST_ARGS=--filter FullyQualifiedName~%(Identity)</PreCommands>
<PreCommands Condition="'$(OS)' != 'Windows_NT'">export TEST_ARGS=&quot;--filter FullyQualifiedName~%(Identity)&quot;</PreCommands>

<!-- FIXME: workaround for https://github.com/dotnet/runtime/issues/62660 -->
<PreCommands Condition="'$(OS)' == 'Windows_NT'">set TEST_ARGS=--filter FullyQualifiedName~%(Identity)&amp;Category!=windows-failing</PreCommands>
<PreCommands Condition="'$(OS)' != 'Windows_NT'">export TEST_ARGS=&quot;--filter FullyQualifiedName~%(Identity)&amp;Category!=linux-failing&quot;</PreCommands>

<Command>$(HelixCommand)</Command>
<Timeout>$(_workItemTimeout)</Timeout>
</HelixWorkItem>
Expand Down
3 changes: 2 additions & 1 deletion src/mono/wasm/debugger/DebuggerTestSuite/ArrayTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

namespace DebuggerTests
{

[Trait("Category", "windows-failing")]
[Trait("Category", "linux-failing")]
public class ArrayTests : DebuggerTestBase
{

Expand Down

0 comments on commit 258b051

Please sign in to comment.