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
Switch to libtest-mimic for wit-bindgen-test (#1496)
* Switch to libtest-mimic for wit-bindgen-test
In poking around at #1495 I found that there was no way to actually
print the name of the current test being run. I also found that it
wouldn't be easy to print the name of the test as it was run before it
started running to figure out which test was hanging. Instead of
building out infrastructure to do this I've instead opted to switch to
using `libtest-mimic`-the-crate also being used in wasm-tools and
Wasmtime. This should help add these options by default and while it's
not a standard embedding it's close enough.
The main downside with this is that `libtest-mimic` requires `'static`
tests which was not implemented in this crate. That required a lot of
clones to get lifetimes to line up.
* CI fixes
0 commit comments