From 7cad31210034b8f237c4bfbc1849d69c45760813 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 7 Aug 2023 16:33:17 +0200 Subject: [PATCH] Add a note about running tests in debug mode --- tests/src/tests.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/src/tests.rs b/tests/src/tests.rs index cf2aa581..f201d72d 100644 --- a/tests/src/tests.rs +++ b/tests/src/tests.rs @@ -52,6 +52,9 @@ fn main() -> ExitCode { println!("Testing {} files in total.", svg_files.len()); + #[cfg(debug_assertions)] + println!("Running the tests in debug mode may take a long time."); + for svg_file in &svg_files { if !references.contains(svg_file) { let _ = print_test_case_result(TestStatus::Skipped, svg_file, args.verbose);