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