summaryrefslogtreecommitdiff
path: root/benchmark/io_file_write.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/io_file_write.yml')
-rw-r--r--benchmark/io_file_write.yml17
1 files changed, 0 insertions, 17 deletions
diff --git a/benchmark/io_file_write.yml b/benchmark/io_file_write.yml
deleted file mode 100644
index 68af6d588c..0000000000
--- a/benchmark/io_file_write.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-benchmark:
- io_file_write: |
- #
- # 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
- }
-loop_count: 1