summaryrefslogtreecommitdiff
path: root/benchmark/bm_io_file_create.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_io_file_create.rb')
-rw-r--r--benchmark/bm_io_file_create.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/benchmark/bm_io_file_create.rb b/benchmark/bm_io_file_create.rb
index 3b48028808..db4e4dedd2 100644
--- a/benchmark/bm_io_file_create.rb
+++ b/benchmark/bm_io_file_create.rb
@@ -2,13 +2,10 @@
# 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)
}