aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_io_file_create.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-28 03:53:34 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-28 03:53:34 +0000
commit225e95fe830494bf929a09f96ac518534e8b67fd (patch)
tree8eaa1a65f138a59324acf97fb6ca47f0c6714a09 /benchmark/bm_io_file_create.rb
parent6698dd81e6d05b76baddf76703308c5d20f2a492 (diff)
downloadruby-225e95fe830494bf929a09f96ac518534e8b67fd.tar.gz
* benchmark/bm_app_erb.rb: added.
* benchmark/bm_io_file_(create|read|write).rb: added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/bm_io_file_create.rb')
-rw-r--r--benchmark/bm_io_file_create.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/benchmark/bm_io_file_create.rb b/benchmark/bm_io_file_create.rb
new file mode 100644
index 0000000000..3b48028808
--- /dev/null
+++ b/benchmark/bm_io_file_create.rb
@@ -0,0 +1,16 @@
+#
+# Create files
+#
+
+require 'tempfile'
+
+max = 50_000
+file = './tmpfile_of_bm_io_file_create'
+
+max.times{
+ #f = Tempfile.new('yarv-benchmark')
+ f = open(file, 'w')
+ f.close#(true)
+}
+File.unlink(file)
+