summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-08 09:25:22 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-08 09:25:22 +0900
commitd0b2332e938e06b6f5b4baf07db4a65543d2a204 (patch)
treebfc3de2b2206d562f484d2658c3b3e2a2bbdf59d /common.mk
parent11a6c405bc906deb720bb4df3f564f338b4afc4a (diff)
Defaulted benchmark output to markdown with comarison
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index 2449efee38..b897d5b5e6 100644
--- a/common.mk
+++ b/common.mk
@@ -1204,6 +1204,7 @@ bisect-ruby: PHONY
COMPARE_RUBY = $(BASERUBY)
BENCH_RUBY = $(RUNRUBY)
+BENCH_OPTS = --output=markdown --output-compare
ITEM =
ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '$(ITEM)' -o -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb' | sort)
OPTS =
@@ -1213,7 +1214,7 @@ benchmark: miniruby$(EXEEXT) update-benchmark-driver PHONY
$(BASERUBY) -rrubygems -I$(srcdir)/benchmark/lib $(srcdir)/benchmark/benchmark-driver/exe/benchmark-driver \
--executables="compare-ruby::$(COMPARE_RUBY) -I$(EXTOUT)/common --disable-gem" \
--executables="built-ruby::$(BENCH_RUBY) --disable-gem" \
- $(ARGS) $(OPTS)
+ $(BENCH_OPTS) $(ARGS) $(OPTS)
run.gdb:
echo set breakpoint pending on > run.gdb