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