mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* yarvtest/yarvtest.rb: check target command names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11669 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9e24950816
commit
eb6153b37d
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Feb 8 22:39:09 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* yarvtest/yarvtest.rb: check target command names.
|
||||||
|
|
||||||
Thu Feb 8 22:31:45 2007 Koichi Sasada <ko1@atdot.net>
|
Thu Feb 8 22:31:45 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* test/ruby/test_clone.rb: fix to current spec
|
* test/ruby/test_clone.rb: fix to current spec
|
||||||
|
|
|
@ -17,8 +17,10 @@ ARGV.each{|opt|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
puts "matzruby: #{`#{$matzruby} -v`}"
|
a = "matzruby: #{`#{$matzruby} -v`}"
|
||||||
puts "ruby : #{`#{$ruby} -v`}"
|
b = "ruby : #{`#{$ruby} -v`}"
|
||||||
|
puts a, b
|
||||||
|
raise "Using same command" if a == b
|
||||||
|
|
||||||
class YarvTestBase < Test::Unit::TestCase
|
class YarvTestBase < Test::Unit::TestCase
|
||||||
def initialize *args
|
def initialize *args
|
||||||
|
|
Loading…
Reference in a new issue