From ba2ee202b7cfa75221d79fd433f2c5859ad2764f Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Sun, 22 Feb 2015 10:42:36 +0700 Subject: [PATCH] benches: add markdown as a task in bench_engines Signed-off-by: Jean Privat --- benchmarks/bench_engines.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/benchmarks/bench_engines.sh b/benchmarks/bench_engines.sh index 571d71f..9084292 100755 --- a/benchmarks/bench_engines.sh +++ b/benchmarks/bench_engines.sh @@ -72,6 +72,8 @@ function run_compiler() bench_command "queens" "bench_queens 13" "./queens.$title.bin" 13 run_command "$@" "../lib/ai/examples/puzzle.nit" -o "puzzle.$title.bin" bench_command "puzzle" "puzzle 15-hard" "./puzzle.$title.bin" kleg.mondcafjhbi + run_command "$@" "markdown/engines/nitmd/nitmd.nit" -o "nitmd.$title.bin" + bench_command "nitmd" "markdown" "./nitmd.$title.bin" markdown/benches/out/mixed.md 80 fi rm -r *.bin .nit_compile out @@ -119,6 +121,10 @@ fi # get the bootstrapped nitc cp ../bin/nitc . +if test -z "$fast"; then + make -C markdown/benches +fi + ## EFFECTIVE BENCHS ## function bench_steps() -- 1.7.9.5