From e4d22a22dffee0d3c9a7e0c831b3ab112ef31959 Mon Sep 17 00:00:00 2001 From: Pere Diaz Bou Date: Wed, 5 Mar 2025 21:55:33 +0100 Subject: [PATCH] ignore test again :) --- tests/integration/wal/test_wal.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/integration/wal/test_wal.rs b/tests/integration/wal/test_wal.rs index cf1ce7289..5a92e01c3 100644 --- a/tests/integration/wal/test_wal.rs +++ b/tests/integration/wal/test_wal.rs @@ -36,6 +36,7 @@ fn test_wal_checkpoint_result() -> Result<()> { } #[test] +#[ignore = "ignored for now because it's flaky"] fn test_wal_1_writer_1_reader() -> Result<()> { maybe_setup_tracing(); let tmp_db = Arc::new(Mutex::new(TempDatabase::new("test_wal.db"))); @@ -66,7 +67,6 @@ fn test_wal_1_writer_1_reader() -> Result<()> { let writer_thread = std::thread::spawn(move || { let conn = tmp_db_w.connect().unwrap(); for i in 0..ROWS_WRITE { - println!("adding {}", i); conn.execute(format!("INSERT INTO t values({})", i).as_str()) .unwrap(); let mut rows = rows_.lock().unwrap(); @@ -79,7 +79,6 @@ fn test_wal_1_writer_1_reader() -> Result<()> { loop { let rows = *rows_.lock().unwrap(); let mut i = 0; - println!("reading {}", rows); match conn.query("SELECT * FROM t") { Ok(Some(ref mut rows)) => loop { match rows.step().unwrap() {