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