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