summaryrefslogtreecommitdiff
path: root/trunk/benchmark/runc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/runc.rb')
-rw-r--r--trunk/benchmark/runc.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/trunk/benchmark/runc.rb b/trunk/benchmark/runc.rb
deleted file mode 100644
index 14ab171c12..0000000000
--- a/trunk/benchmark/runc.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-#
-#
-
-require 'benchmark'
-require 'rbconfig'
-
-$rubybin = ENV['RUBY'] || File.join(
- Config::CONFIG["bindir"],
- Config::CONFIG["ruby_install_name"] + Config::CONFIG["EXEEXT"])
-
-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
-}
-
-