summaryrefslogtreecommitdiff
path: root/benchmark/io_file_create.yml
blob: ece11cc332197ebf1f7d37cb55d5fc1c09832be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
benchmark:
  io_file_create: |
    #
    # Create files
    #

    max = 200_000
    file = './tmpfile_of_bm_io_file_create'

    max.times{
      f = open(file, 'w')
      f.close#(true)
    }
    File.unlink(file)
loop_count: 1