From 225e95fe830494bf929a09f96ac518534e8b67fd Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 28 Sep 2007 03:53:34 +0000 Subject: * benchmark/bm_app_erb.rb: added. * benchmark/bm_io_file_(create|read|write).rb: added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ benchmark/bm_app_erb.rb | 26 ++++++++++++++++++++++++++ benchmark/bm_io_file_create.rb | 16 ++++++++++++++++ benchmark/bm_io_file_read.rb | 15 +++++++++++++++ benchmark/bm_io_file_write.rb | 14 ++++++++++++++ 5 files changed, 77 insertions(+) create mode 100644 benchmark/bm_app_erb.rb create mode 100644 benchmark/bm_io_file_create.rb create mode 100644 benchmark/bm_io_file_read.rb create mode 100644 benchmark/bm_io_file_write.rb diff --git a/ChangeLog b/ChangeLog index 9c3cafc0f4..f441676d35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Sep 28 12:51:42 2007 Koichi Sasada + + * benchmark/bm_app_erb.rb: added. + + * benchmark/bm_io_file_(create|read|write).rb: added. + Fri Sep 28 12:49:05 2007 Koichi Sasada * benchmark/driver.rb: fix file selection algorithm. diff --git a/benchmark/bm_app_erb.rb b/benchmark/bm_app_erb.rb new file mode 100644 index 0000000000..c4fcfac887 --- /dev/null +++ b/benchmark/bm_app_erb.rb @@ -0,0 +1,26 @@ +# +# Create many HTML strings with ERB. +# + +require 'erb' + +data = DATA.read +max = 5_000 +title = "hello world!" +content = "hello world!\n" * 10 + +max.times{ + ERB.new(data).result(binding) +} + +__END__ + + + <%= title %> + +

<%= title %>

+

+ <%= content %> +

+ + diff --git a/benchmark/bm_io_file_create.rb b/benchmark/bm_io_file_create.rb new file mode 100644 index 0000000000..3b48028808 --- /dev/null +++ b/benchmark/bm_io_file_create.rb @@ -0,0 +1,16 @@ +# +# Create files +# + +require 'tempfile' + +max = 50_000 +file = './tmpfile_of_bm_io_file_create' + +max.times{ + #f = Tempfile.new('yarv-benchmark') + f = open(file, 'w') + f.close#(true) +} +File.unlink(file) + diff --git a/benchmark/bm_io_file_read.rb b/benchmark/bm_io_file_read.rb new file mode 100644 index 0000000000..488a4e90ad --- /dev/null +++ b/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 +} diff --git a/benchmark/bm_io_file_write.rb b/benchmark/bm_io_file_write.rb new file mode 100644 index 0000000000..05c7e7e45e --- /dev/null +++ b/benchmark/bm_io_file_write.rb @@ -0,0 +1,14 @@ +# +# 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 +} -- cgit v1.2.3