summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/runc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/runc.rb')
-rw-r--r--ruby_1_9_3/benchmark/runc.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/ruby_1_9_3/benchmark/runc.rb b/ruby_1_9_3/benchmark/runc.rb
deleted file mode 100644
index 97c5cef045..0000000000
--- a/ruby_1_9_3/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
-}
-
-