1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* rubytest.rb: do nothing while cross-compiling, return status in

system independent style.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-04-15 10:57:16 +00:00
parent b3db09df79
commit a3dc7b771e
2 changed files with 12 additions and 7 deletions

View file

@ -1,12 +1,14 @@
#! ./miniruby
exit if defined?(CROSS_COMPILING)
load './rbconfig.rb'
include Config
unless File.exist? "./#{CONFIG['ruby_install_name']}#{CONFIG['EXEEXT']}"
print "./#{CONFIG['ruby_install_name']} is not found.\n"
ruby = "./#{CONFIG['ruby_install_name']}#{CONFIG['EXEEXT']}"
unless File.exist? ruby
print "#{ruby} is not found.\n"
print "Try `make' first, then `make test', please.\n"
exit 1
exit false
end
if File.exist? CONFIG['LIBRUBY_SO']
@ -35,13 +37,13 @@ $stderr.reopen($stdout)
error = ''
srcdir = File.dirname(__FILE__)
`./#{CONFIG["ruby_install_name"]}#{CONFIG["EXEEXT"]} -I#{srcdir}/lib #{srcdir}/sample/test.rb`.each do |line|
`#{ruby} -I#{srcdir}/lib #{srcdir}/sample/test.rb`.each do |line|
if line =~ /^end of test/
print "test succeeded\n"
exit 0
exit true
end
error << line if line =~ %r:^(sample/test.rb|not):
end
print error
print "test failed\n"
exit 1
exit false