From 1606322d96c2f226ef2e451fecc4a4fe42a09234 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 15 Apr 2004 10:57:16 +0000 Subject: * rubytest.rb: do nothing while cross-compiling, return status in system independent style. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- rubytest.rb | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'rubytest.rb') diff --git a/rubytest.rb b/rubytest.rb index d664bcf3a..18d5ca89b 100644 --- a/rubytest.rb +++ b/rubytest.rb @@ -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 -- cgit