mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
removed benchmark debug printing
This commit is contained in:
parent
67efc9bd5f
commit
5d30e26e97
1 changed files with 1 additions and 7 deletions
|
@ -12,11 +12,9 @@ fn exec_bench_w_input<T: Measurement>(
|
|||
) {
|
||||
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<T: Measurement>(
|
|||
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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue