summaryrefslogtreecommitdiff
path: root/benchmark/bm_io_file_write.rb
blob: 05c7e7e45e74f84332c3aee46347b65275046ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Seek and Write file.
#

require 'tempfile'

max = 20_000
str = "Hello world!  " * 1000
f = Tempfile.new('yarv-benchmark')

max.times{
  f.seek 0
  f.write str
}