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
Jemalloc is not supported on Windows (MSVC). There's no way to run
tests of other crates without manually removing jemalloc dependencies
and integration tests. This may lead some mistake (e.g. including
jemalloc removed `Cargo.toml` to the commit mistakenly) so I want to
make easier to ignore the test on Windows.
Now, the test will be run only when `jemalloc` feature is enabled.
Note that the feature is default feature, since completely ignoring the
test by default will forget running the test forever. So `cargo test`
will run the test usually. To ignore the test, run `cargo test
--no-default-features` to disable `jemalloc` feature.
0 commit comments