diff options
Diffstat (limited to 'benchmark/runc.rb')
| -rw-r--r-- | benchmark/runc.rb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/benchmark/runc.rb b/benchmark/runc.rb deleted file mode 100644 index 97c5cef045..0000000000 --- a/benchmark/runc.rb +++ /dev/null @@ -1,27 +0,0 @@ -# -# -# - -require 'benchmark' -require 'rbconfig' - -$rubybin = ENV['RUBY'] || RbConfig.ruby - -def runfile file - puts file - file = File.join(File.dirname($0), 'contrib', file) - Benchmark.bm{|x| - x.report('ruby'){ - system("#{$rubybin} #{file}") - } - x.report('yarv'){ - system("#{$rubybin} -rite -I.. #{file}") - } - } -end - -ARGV.each{|file| - runfile file -} - - |
