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
I noticed that when I run a cargo test of rust-analyzer @ d9c29afaee6cb26044b5a605e0073fcabb2e9722
, all the tests pass, but when I use cranelift, some some of the tests fail:
RUSTFLAGS="-Zcodegen-backend=cranelift" ~/.cargo/bin/cargo +master test
consteval::tests::const_loop is because of a std::panic::resume_unwind thrown on cycle errors, which because cg_clif only supports panic=abort currently can't be caught again. The other tests likely have the same issue.
´rustc 1.79.0-nightly (83d0a940c 2024-04-06)´
I noticed that when I run a
cargo test
of rust-analyzer @ d9c29afaee6cb26044b5a605e0073fcabb2e9722, all the tests pass, but when I use cranelift, some some of the tests fail:
RUSTFLAGS="-Zcodegen-backend=cranelift" ~/.cargo/bin/cargo +master test
The text was updated successfully, but these errors were encountered: