Skip to content

Commit c361f91

Browse files
authored
[wasm] Fix running debugger tests on windows (#87228)
* [wasm] Fix running debugger tests on windows .. by making sure to escape `&` in the command line. This was introduced in: ``` commit e96321d Author: Ilona Tomkowicz <[email protected]> Date: Tue Jun 6 05:59:43 2023 +0200 [wasm][debugger] Disable failing multithreading debugger tests (#86501) ``` .. but missed CI due to the helix outage. * Fix escaping ! on windows
1 parent 3919db9 commit c361f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mono/wasm/debugger/Wasm.Debugger.Tests/wasm.helix.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<PayloadArchive>$(TestArchiveTestsDir)Wasm.Debugger.Tests.zip</PayloadArchive>
2828
<Command>$(HelixCommand)</Command>
2929
<Timeout>$(_DebuggerTestsWorkItemTimeout)</Timeout>
30-
<PreCommands Condition="'$(OS)' == 'Windows_NT'">set &quot;TEST_ARGS=--filter category!=failing&amp;FullyQualifiedName~%(Identity)&quot;</PreCommands>
30+
<PreCommands Condition="'$(OS)' == 'Windows_NT'">set &quot;TEST_ARGS=--filter category^^!=failing^&amp;FullyQualifiedName~%(Identity)&quot;</PreCommands>
3131
<PreCommands Condition="'$(OS)' != 'Windows_NT'">export &quot;TEST_ARGS=--filter category!=failing&amp;FullyQualifiedName~%(Identity)&quot;</PreCommands>
3232
</HelixWorkItem>
3333
</ItemGroup>

0 commit comments

Comments
 (0)