From 085786623c66574868eb0c9023e5f0ed135b4b46 Mon Sep 17 00:00:00 2001 From: Fam Zheng Date: Thu, 24 Apr 2025 22:30:55 +0100 Subject: [PATCH] emtest: Drop tests --- emtest/src/main.rs | 35 +---------------------------------- 1 file changed, 1 insertion(+), 34 deletions(-) diff --git a/emtest/src/main.rs b/emtest/src/main.rs index b2f68fd..268e6f4 100644 --- a/emtest/src/main.rs +++ b/emtest/src/main.rs @@ -43,37 +43,4 @@ fn list_files(p: &str) -> Vec { ret.push(ap); } 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(); - } -} +} \ No newline at end of file