1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 44772: [Backport #9430]

benchmark/driver: avoid large alloc in driver process

	* benchmark/driver: avoid large alloc in driver process
  [ruby-core:59869] [Bug #9430]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@45121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2014-02-22 07:22:12 +00:00
parent d439b3b1d9
commit cea7808b10
2 changed files with 2 additions and 2 deletions

View file

@ -242,7 +242,7 @@ class BenchmarkDriver
cmd = "#{executable} #{@ruby_arg} #{file}" cmd = "#{executable} #{@ruby_arg} #{file}"
m = Benchmark.measure{ m = Benchmark.measure{
`#{cmd}` system(cmd, out: File::NULL)
} }
if $? != 0 if $? != 0

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.1.1" #define RUBY_VERSION "2.1.1"
#define RUBY_RELEASE_DATE "2014-02-22" #define RUBY_RELEASE_DATE "2014-02-22"
#define RUBY_PATCHLEVEL 65 #define RUBY_PATCHLEVEL 66
#define RUBY_RELEASE_YEAR 2014 #define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 2 #define RUBY_RELEASE_MONTH 2