File tree 2 files changed +5
-5
lines changed
src/mono/wasm/Wasm.Build.Tests/data
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 97
97
<_XHarnessArgs Condition =" '$(_XHarnessTestsTimeout)' != '' " >$(_XHarnessArgs) " --timeout=$(_XHarnessTestsTimeout)" </_XHarnessArgs >
98
98
<_XHarnessArgs Condition =" '$(WasmXHarnessArgsCli)' != ''" >$(_XHarnessArgs) $(WasmXHarnessArgsCli)</_XHarnessArgs >
99
99
100
- <!-- Works around https://github.com/dotnet/runtime/issues/80619 -->
101
- <_NugetWorkAroundCommand >dotnet new console</_NugetWorkAroundCommand >
102
-
103
100
<!-- There two flavors of WasmXHarnessArgs and WasmXHarnessMonoArgs, one is MSBuild property and the other is environment variable -->
104
- <RunScriptCommand Condition =" '$(OS)' != 'Windows_NT'" >$(_NugetWorkAroundCommand) $(_ShellCommandSeparator) $ HARNESS_RUNNER $(_XHarnessArgs) %24XHARNESS_ARGS %24WasmXHarnessArgs -- $(WasmXHarnessMonoArgs) %24WasmXHarnessMonoArgs $(_AppArgs) %24WasmTestAppArgs</RunScriptCommand >
105
- <RunScriptCommand Condition =" '$(OS)' == 'Windows_NT'" >$(_NugetWorkAroundCommand) $(_ShellCommandSeparator) %HARNESS_RUNNER% $(_XHarnessArgs) %XHARNESS_ARGS% %WasmXHarnessArgs% -- $(WasmXHarnessMonoArgs) %WasmXHarnessMonoArgs% $(_AppArgs) %WasmTestAppArgs%</RunScriptCommand >
101
+ <RunScriptCommand Condition =" '$(OS)' != 'Windows_NT'" >$HARNESS_RUNNER $(_XHarnessArgs) %24XHARNESS_ARGS %24WasmXHarnessArgs -- $(WasmXHarnessMonoArgs) %24WasmXHarnessMonoArgs $(_AppArgs) %24WasmTestAppArgs</RunScriptCommand >
102
+ <RunScriptCommand Condition =" '$(OS)' == 'Windows_NT'" >%HARNESS_RUNNER% $(_XHarnessArgs) %XHARNESS_ARGS% %WasmXHarnessArgs% -- $(WasmXHarnessMonoArgs) %WasmXHarnessMonoArgs% $(_AppArgs) %WasmTestAppArgs%</RunScriptCommand >
106
103
</PropertyGroup >
107
104
108
105
<PropertyGroup Condition =" '$(BuildAOTTestsOnHelix)' == 'true'" >
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ # create dummy console app to workaround https://github.com/dotnet/runtime/issues/80619
4
+ (CONSOLE_TEMP_DIR=" $( mktemp -d) " ; " $DOTNET_ROOT /dotnet" new console -o " $CONSOLE_TEMP_DIR " ; rm -rf " $CONSOLE_TEMP_DIR " ) || true
5
+
3
6
set
4
7
echo " ------------------------ start -------------------"
5
8
You can’t perform that action at this time.
0 commit comments