-
Notifications
You must be signed in to change notification settings - Fork 5.3k
[wasm] Disable runtime test failing due to stack overflow #69863
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
`JIT/Directed/tailcall/tailcall/tailcall.sh` Issue: dotnet#69517
|
This should be backported to preview5 too. |
|
/backport release/7.0-preview5 |
|
/backport to release/7.0-preview5 |
|
Started backporting to release/7.0-preview5: https://github.com/dotnet/runtime/actions/runs/2399196476 |
|
@radical an error occurred while backporting to release/7.0-preview5, please check the run log for details! Error: @radical is not a repo collaborator, backporting is not allowed. If you're a collaborator please make sure your Microsoft team membership visibility is set to Public on https://github.com/orgs/microsoft/people?query=radical |
* [wasm] Disable runtime test failing due to stack overflow `JIT/Directed/tailcall/tailcall/tailcall.sh` Issue: dotnet#69517 * Also disable JIT/Directed/IL/Tailcall/ExplicitTailCallNoSO/ExplicitTailCallNoSO.sh * try to fix the exclusion * Fix path for exclusion
…tnet#69863)" This reverts commit 61441fa.
…70050) * [wasm] Fix runtime test failing due to the app running in debug mode Fixes #69517 - Recent [wasm-app-host commit](6b3ea40) changed `WasmApp.targets` so `WasmDebugLevel` would be set to enable debugging if `Configuration==Debug`. - this broke some runtime tests which depend on tail call optimizations, which get disabled when debugging is enabled in the runtime. - And the wasm apps for the runtime tests are being built with no configuration set, which defaults to `Debug`. Instead, propogate the config for the build to the wasm proxy (`WasmTestRunner`) projects too. Fixes #69517 . * Revert "[wasm] Disable runtime test failing due to stack overflow (#69863)" This reverts commit 61441fa.
JIT/Directed/tailcall/tailcall/tailcall.shIssue: #69517
Fixes: #69850