lofty-rs/lofty/tests/fuzz/pictureinformation_from_png.rs
Serial 069b7bfc97 Tests: Switch to test_log
We have really good debug/trace logs now. Having them available for test failures is a huge help.
2024-09-01 19:26:30 -04:00

10 lines
271 B
Rust

use crate::get_reader;
use lofty::picture::PictureInformation;
#[test_log::test]
fn crash1() {
let reader =
get_reader("pictureinformation_from_png/crash-9cca0ac668e4735a0aac8eddb91a50b9351b419c");
let _ = PictureInformation::from_png(reader.get_ref()).unwrap();
}