2000-08-03 13:50:41 +04:00
|
|
|
#! ./miniruby
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2004-04-15 14:57:16 +04:00
|
|
|
exit if defined?(CROSS_COMPILING)
|
2009-01-09 06:29:10 +03:00
|
|
|
ruby = ENV["RUBY"]
|
|
|
|
unless ruby
|
|
|
|
load './rbconfig.rb'
|
|
|
|
ruby = "./#{RbConfig::CONFIG['ruby_install_name']}#{RbConfig::CONFIG['EXEEXT']}"
|
|
|
|
end
|
2004-04-15 14:57:16 +04:00
|
|
|
unless File.exist? ruby
|
|
|
|
print "#{ruby} is not found.\n"
|
2000-06-12 11:48:31 +04:00
|
|
|
print "Try `make' first, then `make test', please.\n"
|
2004-04-15 14:57:16 +04:00
|
|
|
exit false
|
2000-06-12 11:48:31 +04:00
|
|
|
end
|
|
|
|
|
1998-01-16 15:19:09 +03:00
|
|
|
$stderr.reopen($stdout)
|
|
|
|
error = ''
|
2000-06-12 11:48:31 +04:00
|
|
|
|
2004-03-18 13:49:20 +03:00
|
|
|
srcdir = File.dirname(__FILE__)
|
2009-01-09 06:29:10 +03:00
|
|
|
`#{ruby} #{srcdir}/sample/test.rb`.each_line do |line|
|
1998-01-16 15:19:09 +03:00
|
|
|
if line =~ /^end of test/
|
2007-07-06 13:23:53 +04:00
|
|
|
print "\ntest succeeded\n"
|
2004-04-15 14:57:16 +04:00
|
|
|
exit true
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
2006-12-31 18:02:22 +03:00
|
|
|
error << line if %r:^(sample/test.rb|not): =~ line
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
print error
|
|
|
|
print "test failed\n"
|
2004-04-15 14:57:16 +04:00
|
|
|
exit false
|