[wasm][coreclr] runtime tests on CI#123377
Merged
radekdoulik merged 118 commits intodotnet:mainfrom Feb 19, 2026
Merged
Conversation
Set `isTailcall` to `false`, when preparing the call. This is similar to how we set other state vars for the call, so I did it this way. Alternatively we can reset the `isTailcall` after updating the stack and frame for tailcalls. That would invalidate the meaning of the variable for the rest of the tailcall though, so we would need to rename it at least to signal, that it is valid only in the beginning of the tailcall.
Based on changes from the previous branch (https://github.com/radekdoulik/runtime/tree/clr-wasm-runtime-tests-with-node)
Member
Author
|
/azp run runtime |
|
Azure Pipelines failed to run 1 pipeline(s). |
src/tests/JIT/Directed/Misc/function_pointer/MutualThdRecur-fptr.il
Outdated
Show resolved
Hide resolved
…s' into clr-wasm-runtime-tests-on-node-2
This was referenced Feb 18, 2026
That will be fixed in separate PR
pavelsavara
approved these changes
Feb 19, 2026
maraf
approved these changes
Feb 19, 2026
# Conflicts: # src/coreclr/hosts/corerun/wasm/libCorerun.js # src/mono/sample/wasm/browser/wwwroot/main.js # src/native/corehost/browserhost/browserhost.cpp # src/native/corehost/browserhost/host/index.ts # src/native/corehost/browserhost/libBrowserHost.footer.js # src/native/libs/Common/JavaScript/types/ems-ambient.ts
…/radekdoulik/runtime into clr-wasm-runtime-tests-on-node-2
3 tasks
Member
Author
|
/ba-g the failures are unrelated. runtime-diagnostics failure is #121989 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enable CoreCLR runtime tests on CI for browser/wasm using Node.js
Run CoreCLR runtime tests on browser/wasm in CI, using Node.js as the execution host. The design stays close to how desktop platforms run tests, minimizing complexity.
Key changes
desktop execution path rather than the mobile/xharness path.
targets).
thunks discovered during test execution. Disabled primary reverse thunk lookup which needs fixing in separate PR.