summaryrefslogtreecommitdiff
path: root/test/runner.rb
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
commita0b500ac088667ae82b1fcd2ee0e5e51eb7f3f50 (patch)
tree56bfe351457eaa4a8d8eab7bb4e965f49c85dac5 /test/runner.rb
parent919992f5b8bac22566a1f896fbe7886859a529f6 (diff)
* test/runner.rb (CROSS_COMPILING): need to require rbconfig.rb before
using CROSS_COMPILNG. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/runner.rb')
-rw-r--r--test/runner.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/runner.rb b/test/runner.rb
index d491b053a8..19c3b9b376 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$