summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-20 13:58:20 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-20 13:58:20 +0000
commite43285f4fac77fb95b3d682aa3baa937eb389419 (patch)
tree56bfe351457eaa4a8d8eab7bb4e965f49c85dac5 /test
parent41a44513226887c4ec9ef405403573a491c391ff (diff)
downloadruby-e43285f4fac77fb95b3d682aa3baa937eb389419.tar.gz
ruby-e43285f4fac77fb95b3d682aa3baa937eb389419.tar.xz
ruby-e43285f4fac77fb95b3d682aa3baa937eb389419.zip
* test/runner.rb (CROSS_COMPILING): need to require rbconfig.rb before
using CROSS_COMPILNG. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/runner.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/runner.rb b/test/runner.rb
index d491b053a..19c3b9b37 100644
--- a/test/runner.rb
+++ b/test/runner.rb
@@ -1,4 +1,5 @@
-exit if defined?(CROSS_COMPILING)
+require 'rbconfig'
+exit if CROSS_COMPILING
require 'test/unit'
rcsid = %w$Id$