-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[wasm] build paltests #112404
base: main
Are you sure you want to change the base?
[wasm] build paltests #112404
Conversation
Disable few parts, some might need closer look later.
And also skip creating pipe to communicate with it
…t it was so you can pull the test statuses out of a log file
To avoid error messages at the end of each run
Also write missing tests
Also fix disabled tests count
Add few more notes to failing memory related tests
Emscripten's mmap doesn't support that and because we don't have virtual memory in wasm, it doesn't make sense to call it there
Also re-enable debug test, which works and disable few MT tests
src/coreclr/tools/superpmi/superpmi-shim-collector/CMakeLists.txt
Outdated
Show resolved
Hide resolved
src/coreclr/tools/superpmi/superpmi-shim-counter/CMakeLists.txt
Outdated
Show resolved
Hide resolved
@@ -119,6 +119,10 @@ if (CLR_CMAKE_TARGET_UNIX OR CLR_CMAKE_TARGET_BROWSER OR CLR_CMAKE_TARGET_WASI) | |||
add_subdirectory(System.IO.Ports.Native) | |||
endif () | |||
|
|||
if (MONO_WASM_MT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the MONO_WASM_MT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is a new flag to indicate mono wasm multithreaded build. one of the changes broke the mono build, so this way we can fix that
arch/${PAL_ARCH_SOURCES_DIR}/debugbreak.S | ||
arch/${PAL_ARCH_SOURCES_DIR}/exceptionhelper.S | ||
) | ||
if (NOT CLR_CMAKE_TARGET_BROWSER) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (NOT CLR_CMAKE_TARGET_BROWSER) | |
if (NOT CLR_CMAKE_TARGET_ARCH_WASM) |
) | ||
endif() | ||
|
||
if (CLR_CMAKE_TARGET_BROWSER) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (CLR_CMAKE_TARGET_BROWSER) | |
if (CLR_CMAKE_TARGET_ARCH_WASM) |
|
||
if(NOT CLR_CMAKE_TARGET_APPLE) | ||
if(NOT CLR_CMAKE_TARGET_APPLE AND NOT CLR_CMAKE_TARGET_BROWSER) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if(NOT CLR_CMAKE_TARGET_APPLE AND NOT CLR_CMAKE_TARGET_BROWSER) | |
if(NOT CLR_CMAKE_TARGET_APPLE AND NOT CLR_CMAKE_TARGET_ARCH_WASM) |
list(APPEND PLATFORM_SOURCES | ||
arch/${PAL_ARCH_SOURCES_DIR}/callsignalhandlerwrapper.S | ||
arch/${PAL_ARCH_SOURCES_DIR}/signalhandlerhelper.cpp | ||
) | ||
endif(NOT CLR_CMAKE_TARGET_APPLE) | ||
endif(NOT CLR_CMAKE_TARGET_APPLE AND NOT CLR_CMAKE_TARGET_BROWSER) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
endif(NOT CLR_CMAKE_TARGET_APPLE AND NOT CLR_CMAKE_TARGET_BROWSER) | |
endif(NOT CLR_CMAKE_TARGET_APPLE AND NOT CLR_CMAKE_TARGET_ARCH_WASM) |
@@ -0,0 +1,69 @@ | |||
#include "pal/dbgmsg.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
License header
No description provided.