summaryrefslogtreecommitdiff
path: root/benchmark/bm_io_file_read.rb
blob: 2b4212db7638a1244b5b33f8590c82a25a1479bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# Seek and Read file.
#

require 'tempfile'

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

max.times{
  f.seek 0
  f.read
}