-Z panic_abort_tests does not support #[bench] #103261
Labels
A-libtest
Area: `#[test]` / the `test` library
requires-nightly
This issue requires a nightly compiler in some way.
T-libs
Relevant to the library team, which will review and decide on the PR/issue.
If we try to run a test binary built with
-Z panic-abort-tests
and that test has a function with the#[bench]
attribute, the binary will panic with the following error:thread 'main' panicked at 'Cannot run dynamic test fn out-of-process', library/test/src/lib.rs:549:22
This is because we convert
#[bench]
to a test usingDynTestFn
when not running benchmarks, butDynTestFn
is not supported with-Z panic-abort-tests
, because we must run tests out of process and don't have a way to pass a closure to another process.The text was updated successfully, but these errors were encountered: