summaryrefslogtreecommitdiff
path: root/ruby_2_2/benchmark/bm_io_file_write.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/benchmark/bm_io_file_write.rb')
-rw-r--r--ruby_2_2/benchmark/bm_io_file_write.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/ruby_2_2/benchmark/bm_io_file_write.rb b/ruby_2_2/benchmark/bm_io_file_write.rb
deleted file mode 100644
index aa1be0e5fe..0000000000
--- a/ruby_2_2/benchmark/bm_io_file_write.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-# Seek and Write file.
-#
-
-require 'tempfile'
-
-max = 200_000
-str = "Hello world! " * 1000
-f = Tempfile.new('yarv-benchmark')
-
-max.times{
- f.seek 0
- f.write str
-}