From 5d30e26e973e5b0fba3cbdbfb695a498bc31250c Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Fri, 24 Sep 2021 13:56:53 +0200 Subject: [PATCH] removed benchmark debug printing --- cli/cli_utils/src/bench_utils.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cli/cli_utils/src/bench_utils.rs b/cli/cli_utils/src/bench_utils.rs index 4c929e0ea7..146f500380 100644 --- a/cli/cli_utils/src/bench_utils.rs +++ b/cli/cli_utils/src/bench_utils.rs @@ -12,11 +12,9 @@ fn exec_bench_w_input( ) { let flags: &[&str] = &["--optimize"]; - println!("building {:?}", executable_filename); let compile_out = run_roc(&[&["build", file.to_str().unwrap()], flags].concat()); - println!("done building."); - /*if !compile_out.stderr.is_empty() { + if !compile_out.stderr.is_empty() { panic!("{}", compile_out.stderr); } @@ -26,13 +24,9 @@ fn exec_bench_w_input( compile_out ); - println!("checking output for {:?}", executable_filename); check_cmd_output(file, stdin_str, executable_filename, expected_ending); - println!("benching {:?}", executable_filename); bench_cmd(file, stdin_str, executable_filename, bench_group_opt); - - println!("DONE");*/ } fn check_cmd_output(