emtest: Drop tests

This commit is contained in:
Fam Zheng 2025-04-24 22:30:55 +01:00
parent 4436dc9553
commit 085786623c

View File

@ -44,36 +44,3 @@ fn list_files(p: &str) -> Vec<String> {
} }
ret ret
} }
#[test]
fn test_roi() {
let files = list_files("../dataset/roi");
println!("roi test with {} files", files.len());
for i in &files {
if i.ends_with(".roi.jpg") {
continue;
}
do_qrtool_test("roi", i).unwrap();
}
}
#[test]
fn test_angle() {
let files = list_files("../dataset/angle");
println!("angle test with {} files", files.len());
for i in &files {
do_qrtool_test("angle", i).unwrap();
}
}
#[test]
fn test_topleft() {
let files = list_files("../dataset/topleft");
println!("topleft test with {} files", files.len());
for i in &files {
if i.ends_with(".topleft.jpg") {
continue;
}
do_qrtool_test("topleft", i).unwrap();
}
}