summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-20 05:10:36 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-20 05:10:36 +0000
commitab7e4592106e0796d5b243c0d0c8629a47351e05 (patch)
treebf8f5226911d197dd6e9a91809b5fb78ed1ba57b
parent800103e40a8fa65de0b6effbd06654bc754ac1ad (diff)
* tool/hashbench1.rb: fix paramter too. Increase temporary objects.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--tool/hashbench1.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cb3504f2e6..6ed66c2a86 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jun 20 14:09:54 2013 Koichi Sasada <ko1@atdot.net>
+
+ * tool/hashbench1.rb: fix paramter too. Increase temporary objects.
+
Thu Jun 20 14:01:35 2013 Koichi Sasada <ko1@atdot.net>
* tool/hashbench1.rb: fix parameters.
diff --git a/tool/hashbench1.rb b/tool/hashbench1.rb
index c67420fcac..cb030d458d 100644
--- a/tool/hashbench1.rb
+++ b/tool/hashbench1.rb
@@ -6,6 +6,6 @@ n = 50_000
h["%020d" % i] = "v-#{i}"
}
-(n * 500).times{
+(n * 1_000).times{
''
}