* transcode.c (trans_open_i): check the result of rb_transcoding_open.
[ruby-svn.git] / benchmark / bm_io_file_create.rb
blob7adbe9ea5e7476674dc87cdb39734fb8dfd3407f
2 # Create files
5 max = 50_000
6 file = './tmpfile_of_bm_io_file_create'
8 max.times{
9   f = open(file, 'w')
10   f.close#(true)
12 File.unlink(file)