This commit is contained in:
David Barsky 2025-06-28 22:20:07 +02:00 committed by GitHub
commit 0c6114ccde
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,6 @@ fn dummy(_db: &dyn KnobsDatabase) -> u32 {
}
#[test]
#[cfg_attr(miri, ignore)]
fn execute() {
let db = salsa::DatabaseImpl::new();
@ -42,7 +41,6 @@ fn execute() {
// we expect this to panic, as `salsa::par_map` needs to be called from a query.
#[test]
#[cfg_attr(miri, ignore)]
#[should_panic]
fn direct_calls_panic() {
let db = salsa::DatabaseImpl::new();
@ -68,7 +66,6 @@ fn direct_calls_panic() {
// panics
#[test]
#[cfg_attr(miri, ignore)]
fn execute_cancellation() {
let mut db = Knobs::default();