Files
qdrant/lib/quantization/tests/integration/main.rs
Tim Visée 4e54bbc94a Fix OOB heap read crash with malicious snapshot (#9268)
* Validate quantized u8 data size on load

* Validate other quantization types

* Add test

* Use fs_err
2026-06-03 15:17:04 +02:00

25 lines
408 B
Rust

#[cfg(test)]
pub mod empty_storage;
#[cfg(test)]
pub mod load_validation;
#[cfg(test)]
pub mod metrics;
#[cfg(test)]
pub mod stop_condition;
#[cfg(test)]
pub mod test_avx2;
#[cfg(test)]
pub mod test_binary;
#[cfg(test)]
pub mod test_binary_encodings;
#[cfg(test)]
pub mod test_neon;
#[cfg(test)]
pub mod test_pq;
#[cfg(test)]
pub mod test_simple;
#[cfg(test)]
pub mod test_sse;
#[cfg(test)]
pub mod test_tq;