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