summaryrefslogtreecommitdiff
path: root/benchmark/bm_io_file_create.rb
blob: 3b4802880810abc5703f8ae16773e4afa39cce50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)