ruby-changes:51717
From: k0kubun <ko1@a...>
Date: Tue, 10 Jul 2018 22:17:10 +0900 (JST)
Subject: [ruby-changes:51717] k0kubun:r63929 (trunk): common.mk: execute benchmark alphabetically
k0kubun 2018-07-10 22:16:55 +0900 (Tue, 10 Jul 2018) New Revision: 63929 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=63929 Log: common.mk: execute benchmark alphabetically Modified files: trunk/common.mk Index: common.mk =================================================================== --- common.mk (revision 63928) +++ common.mk (revision 63929) @@ -1113,7 +1113,7 @@ bisect-ruby: PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L1113 COMPARE_RUBY = $(BASERUBY) ITEM = -ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb') +ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb' | sort) OPTS = # You can pass several options through OPTS environment variable. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/