You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the project has many workspace crates that contain critical code (like the kmm crate for virtual memory management) but that have no unit tests yet at all. This is mostly due to the ceremony required to set up the machine to run anything at all (like an allocator). Duplicating that across all crates just for running tests would be madness though. Maybe we can spin up a "runtime crate" that encapsulates all that setup logic (including setting up stuff like unwinding, backtracing etc)
The text was updated successfully, but these errors were encountered:
the project has many workspace crates that contain critical code (like the
kmm
crate for virtual memory management) but that have no unit tests yet at all. This is mostly due to the ceremony required to set up the machine to run anything at all (like an allocator). Duplicating that across all crates just for running tests would be madness though. Maybe we can spin up a "runtime crate" that encapsulates all that setup logic (including setting up stuff like unwinding, backtracing etc)The text was updated successfully, but these errors were encountered: