From c5c1e8b8d49d65d5844b4c4a7cd905c2ba55eeb8 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 20 Jun 2013 07:30:41 +0000 Subject: * benchmark/bm_so_binary_trees.rb: disable `puts' method and change iteration parameter to increase execution time. * benchmark/gc/binarytree.rb: added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/bm_so_binary_trees.rb | 9 +++++++-- benchmark/gc/binary_trees.rb | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 benchmark/gc/binary_trees.rb (limited to 'benchmark') diff --git a/benchmark/bm_so_binary_trees.rb b/benchmark/bm_so_binary_trees.rb index 6a26465578..b1693e4109 100644 --- a/benchmark/bm_so_binary_trees.rb +++ b/benchmark/bm_so_binary_trees.rb @@ -4,7 +4,9 @@ # contributed by Jesse Millikan # disable output -def STDOUT.write_ *args +alias puts_orig puts +def puts str + # disable puts end def item_check(tree) @@ -25,7 +27,7 @@ def bottom_up_tree(item, depth) end end -max_depth = 12 # 16 # ARGV[0].to_i +max_depth = 16 # ARGV[0].to_i min_depth = 4 max_depth = min_depth + 2 if min_depth + 2 > max_depth @@ -55,3 +57,6 @@ min_depth.step(max_depth + 1, 2) do |depth| end puts "long lived tree of depth #{max_depth}\t check: #{item_check(long_lived_tree)}" + +undef puts +alias puts puts_orig diff --git a/benchmark/gc/binary_trees.rb b/benchmark/gc/binary_trees.rb new file mode 100644 index 0000000000..ce1a2d9826 --- /dev/null +++ b/benchmark/gc/binary_trees.rb @@ -0,0 +1 @@ +require_relative '../bm_so_binary_trees.rb' -- cgit v1.2.3