diff --git a/zokrates_test/src/lib.rs b/zokrates_test/src/lib.rs index e3ca6b8c..1e52048f 100644 --- a/zokrates_test/src/lib.rs +++ b/zokrates_test/src/lib.rs @@ -108,12 +108,14 @@ fn compile_and_run(t: Tests) { code, t.entry_point.clone(), Some(&resolver), - &CompileConfig::default().with_is_release(true), + &CompileConfig::default(), ) .unwrap(); let bin = artifacts.prog(); + println!("NOTE: We do not compile in release mode here, so the metrics below are conservative"); + match t.max_constraint_count { Some(target_count) => { let count = bin.constraint_count();