Avoid printing names of all skipped tests in benchmark script
This commit is contained in:
parent
8657054e4b
commit
7005d8b9d9
2 changed files with 3 additions and 3 deletions
|
|
@ -68,6 +68,8 @@ fn main() {
|
|||
let mut all_normal_speeds = Vec::new();
|
||||
let mut all_error_speeds = Vec::new();
|
||||
|
||||
eprintln!("Benchmarking with {} repetitions", *REPETITION_COUNT);
|
||||
|
||||
for (language_path, example_paths) in EXAMPLE_PATHS_BY_LANGUAGE_DIR.iter() {
|
||||
let language_name = language_path.file_name().unwrap().to_str().unwrap();
|
||||
|
||||
|
|
@ -77,8 +79,6 @@ fn main() {
|
|||
}
|
||||
}
|
||||
|
||||
eprintln!("Benchmarking with {} repetitions", *REPETITION_COUNT);
|
||||
|
||||
eprintln!("\nLanguage: {}", language_name);
|
||||
parser.set_language(get_language(language_path)).unwrap();
|
||||
|
||||
|
|
|
|||
|
|
@ -39,4 +39,4 @@ while getopts "hl:e:r:" option; do
|
|||
esac
|
||||
done
|
||||
|
||||
cargo bench
|
||||
cargo bench benchmark
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue