summaryrefslogtreecommitdiff
path: root/trunk/benchmark/bm_io_file_create.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/bm_io_file_create.rb')
-rw-r--r--trunk/benchmark/bm_io_file_create.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/trunk/benchmark/bm_io_file_create.rb b/trunk/benchmark/bm_io_file_create.rb
deleted file mode 100644
index 7adbe9ea5e..0000000000
--- a/trunk/benchmark/bm_io_file_create.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-#
-# Create files
-#
-
-max = 50_000
-file = './tmpfile_of_bm_io_file_create'
-
-max.times{
- f = open(file, 'w')
- f.close#(true)
-}
-File.unlink(file)
-