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.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/benchmark/bm_io_file_create.rb b/benchmark/bm_io_file_create.rb
new file mode 100644
index 0000000000..2f205c1333
--- /dev/null
+++ b/benchmark/bm_io_file_create.rb
@@ -0,0 +1,13 @@
+#
+# Create files
+#
+
+max = 200_000
+file = './tmpfile_of_bm_io_file_create'
+
+max.times{
+ f = open(file, 'w')
+ f.close#(true)
+}
+File.unlink(file)
+