From: Jean Privat Date: Wed, 5 Jun 2013 03:15:59 +0000 (-0400) Subject: benchs: add pep8analisis bench program X-Git-Tag: v0.6~33^2 X-Git-Url: http://nitlanguage.org benchs: add pep8analisis bench program Signed-off-by: Jean Privat --- diff --git a/benchmarks/bench_engines.sh b/benchmarks/bench_engines.sh index ef0a709..5ec8a00 100755 --- a/benchmarks/bench_engines.sh +++ b/benchmarks/bench_engines.sh @@ -25,6 +25,8 @@ source ./bench_plot.sh # Can be overrided with 'the option -n' count=2 +pep8analysis=../../pep8analysis + ### HELPER FUNCTIONS ## function die() @@ -128,6 +130,8 @@ function run_compiler() bench_command "shoot" "shoot_logic 30" "./shoot.$title.bin" 30 run_command "$@" ../tests/bench_bintree_gen.nit -o "bintrees.$title.bin" bench_command "bintrees" "bench_bintree_gen 18" "./bintrees.$title.bin" 18 + run_command "$@" "$pep8analysis/src/pep8analysis.nit" -I "$pep8analysis/lib" -o "pep8a.$title.bin" + bench_command "pep8analisis" "bench_bintree_gen 18" "./pep8a.$title.bin" "$pep8analysis/tests/privat/"*.pep fi }