Skip to content

Commit 06a4738

Browse files
committed
Tweak linker settings to meet tests expectations
1 parent cac00aa commit 06a4738

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

eng/testing/tests.mobile.targets

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
<RunScriptCommand Condition="'$(IsFunctionalTest)' != 'true'">$(AOTScriptCommand)$HARNESS_RUNNER wasm $XHARNESS_COMMAND --app=. --engine=$(JSEngine) $(JSEngineArgs) --js-file=runtime.js --output-directory=$XHARNESS_OUT -- $(RunTestsJSArguments) --run WasmTestRunner.dll $(AssemblyName).dll</RunScriptCommand>
2121
<RunScriptCommand Condition="'$(IsFunctionalTest)' == 'true'">$(AOTScriptCommand)$HARNESS_RUNNER wasm $XHARNESS_COMMAND --app=. --engine=$(JSEngine) $(JSEngineArgs) --js-file=runtime.js --output-directory=$XHARNESS_OUT --expected-exit-code=$(ExpectedExitCode) -- $(RunTestsJSArguments) --run $(AssemblyName).dll --testing</RunScriptCommand>
2222
<EventSourceSupport>false</EventSourceSupport>
23-
<UseSystemResourceKeys>true</UseSystemResourceKeys>
23+
<UseSystemResourceKeys>false</UseSystemResourceKeys>
2424
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
2525
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
26-
<DebuggerSupport>false</DebuggerSupport>
26+
<DebuggerSupport>true</DebuggerSupport>
2727
</PropertyGroup>
2828

2929
<PropertyGroup Condition="'$(EnableAggressiveTrimming)' == 'true'">
@@ -115,7 +115,7 @@
115115
<BundleAssemblies Condition="'$(RunAOTCompilation)' != 'true'" Include="$(PublishDir)*.dll" />
116116
</ItemGroup>
117117

118-
<MakeDir Directories="$(_MobileIntermediateOutputPath)"
118+
<MakeDir Directories="$(_MobileIntermediateOutputPath)"
119119
Condition="'$(RunAOTCompilation)' == 'true'"/>
120120
<RemoveDir Directories="$(BundleDir)" />
121121

@@ -193,9 +193,9 @@
193193
</Target>
194194

195195
<!-- Don't include InTree.props here, because the test projects themselves can set the target* properties -->
196-
<Import Project="$(MonoProjectRoot)\wasm\build\WasmApp.props"
196+
<Import Project="$(MonoProjectRoot)\wasm\build\WasmApp.props"
197197
Condition="'$(ShouldBuildWasmLocally)' == 'true'" />
198-
<Import Project="$(MonoProjectRoot)\wasm\build\WasmApp.InTree.targets"
198+
<Import Project="$(MonoProjectRoot)\wasm\build\WasmApp.InTree.targets"
199199
Condition="'$(ShouldBuildWasmLocally)' == 'true'" />
200200
<PropertyGroup>
201201
<WasmBuildAppDependsOn>PrepareForWasmBuildApp;$(WasmBuildAppDependsOn)</WasmBuildAppDependsOn>
@@ -222,10 +222,10 @@
222222

223223
<!-- Stage Emscripten in repo for helix submission -->
224224
<Copy Condition="'$(ShouldCopyEmsdkFiles)' == 'true'"
225-
SourceFiles="@(EmsdkFiles)"
225+
SourceFiles="@(EmsdkFiles)"
226226
DestinationFolder="$(DestEmsdkDir)\%(RecursiveDir)" />
227227

228-
<Copy SourceFiles="@(BundleFiles)"
228+
<Copy SourceFiles="@(BundleFiles)"
229229
DestinationFolder="$(BundleDir)publish" />
230230
</Target>
231231

0 commit comments

Comments
 (0)