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
philipc opened this issue
Oct 31, 2022
· 4 comments
· Fixed by #103795
Labels
A-libtestArea: `#[test]` / the `test` libraryC-bugCategory: This is a bug.T-libsRelevant to the library team, which will review and decide on the PR/issue.
stack backtrace:
0: rust_begin_unwind
at /rustc/77e57db384aca99444c3b5f6a9c86bc58a804d89/library/std/src/panicking.rs:575:5
1: core::panicking::panic_fmt
at /rustc/77e57db384aca99444c3b5f6a9c86bc58a804d89/library/core/src/panicking.rs:65:14
2: core::panicking::panic
at /rustc/77e57db384aca99444c3b5f6a9c86bc58a804d89/library/core/src/panicking.rs:115:5
3: test::console::run_tests_console
at /rustc/77e57db384aca99444c3b5f6a9c86bc58a804d89/library/test/src/console.rs:296:5
4: test::test_main
at /rustc/77e57db384aca99444c3b5f6a9c86bc58a804d89/library/test/src/lib.rs:140:15
5: test::test_main_static
at /rustc/77e57db384aca99444c3b5f6a9c86bc58a804d89/library/test/src/lib.rs:159:5
6: call_once<fn(), ()>
at /rustc/77e57db384aca99444c3b5f6a9c86bc58a804d89/library/core/src/ops/function.rs:251:5
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
The text was updated successfully, but these errors were encountered:
thomcc
added
A-libtest
Area: `#[test]` / the `test` library
T-libs
Relevant to the library team, which will review and decide on the PR/issue.
labels
Oct 31, 2022
Oof, missed that filtered_tests started as the full list of tests+benches before getting shadowed as only the tests. Not a fan of the way TestEvent is used to manage state (haven't ever been a fan of it, TBH), but I'll have to think a bit about how to fix it without undoing the perf wins we just got here.
A-libtestArea: `#[test]` / the `test` libraryC-bugCategory: This is a bug.T-libsRelevant to the library team, which will review and decide on the PR/issue.
I tried running benchmarks with current nightly rust:
Running with the previous nightly works:
Also, note the difference in the line
running 0 tests
.This happens for the benchmarks in both the
gimli
andaddr2line
crates.#103689 looks to be related (@saethlin)
Meta
Backtrace
The text was updated successfully, but these errors were encountered: