10000 merge revision(s) 44772: [Backport #9430] · github/ruby@c3729ca · GitHub
[go: up one dir, main page]

Skip to content

Commit c3729ca

Browse files
committed
merge revision(s) 44772: [Backport ruby#9430]
benchmark/driver: avoid large alloc in driver process * benchmark/driver: avoid large alloc in driver process [ruby-core:59869] [Bug ruby#9430] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@45121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent dc8c558 commit c3729ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

benchmark/driver.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def measure executable, file
242242
cmd = "#{executable} #{@ruby_arg} #{file}"
243243

244244
m = Benchmark.measure{
245-
`#{cmd}`
245+
system(cmd, out: File::NULL)
246246
}
247247

248248
if $? != 0

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.1"
22
#define RUBY_RELEASE_DATE "2014-02-22"
3-
#define RUBY_PATCHLEVEL 65
3+
#define RUBY_PATCHLEVEL 66
44

55
#define RUBY_RELEASE_YEAR 2014
66
#define RUBY_RELEASE_MONTH 2

0 commit comments

Comments
 (0)
0