remove ignored from sequential tests

This commit is contained in:
Pere Diaz Bou
2025-03-19 16:23:00 +01:00
parent 83d0c9a1b6
commit 01cdcf719c

View File

@@ -76,9 +76,9 @@ fn test_simple_overflow_page() -> anyhow::Result<()> {
}
#[test]
#[ignore]
fn test_sequential_overflow_page() -> anyhow::Result<()> {
let _ = env_logger::try_init();
maybe_setup_tracing();
let tmp_db =
TempDatabase::new_with_rusqlite("CREATE TABLE test (x INTEGER PRIMARY KEY, t TEXT);");
let conn = tmp_db.connect_limbo();
@@ -132,8 +132,8 @@ fn test_sequential_overflow_page() -> anyhow::Result<()> {
_ => unreachable!(),
};
let huge_text = &huge_texts[current_index];
assert_eq!(current_index, id as usize);
compare_string(huge_text, text);
assert_eq!(current_index, id as usize);
current_index += 1;
}
StepResult::IO => {
@@ -153,7 +153,6 @@ fn test_sequential_overflow_page() -> anyhow::Result<()> {
Ok(())
}
#[ignore]
#[test_log::test]
fn test_sequential_write() -> anyhow::Result<()> {
let _ = env_logger::try_init();
@@ -470,3 +469,15 @@ fn test_wal_restart() -> anyhow::Result<()> {
}
Ok(())
}
#[test]
fn test_insert_after_big_blob() -> anyhow::Result<()> {
let _ = env_logger::try_init();
let tmp_db = TempDatabase::new_with_rusqlite("CREATE TABLE temp (t1 BLOB, t2 INTEGER)");
let conn = tmp_db.connect_limbo();
conn.execute("insert into temp values (zeroblob (262144))")?;
conn.execute("insert into temp values (1)")?;
Ok(())
}