From de8d4dfe4f600b8d7f5c6b52b09907742a75c8bd Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 15 May 2025 09:15:47 +0300 Subject: [PATCH] sqlite3/tests: Remove test case from test_wal_checkpoint Turns out SQLite SIGSEGVs on CI runs for this... --- sqlite3/tests/compat/mod.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sqlite3/tests/compat/mod.rs b/sqlite3/tests/compat/mod.rs index de6ca7e4a..493da31ea 100644 --- a/sqlite3/tests/compat/mod.rs +++ b/sqlite3/tests/compat/mod.rs @@ -124,12 +124,6 @@ mod tests { #[test] fn test_wal_checkpoint() { unsafe { - // Test with NULL db handle - assert_eq!( - sqlite3_wal_checkpoint(ptr::null_mut(), ptr::null()), - SQLITE_MISUSE - ); - // Test with valid db let mut db = ptr::null_mut(); assert_eq!(