diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-20 13:58:20 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-20 13:58:20 +0000 |
| commit | e43285f4fac77fb95b3d682aa3baa937eb389419 (patch) | |
| tree | 56bfe351457eaa4a8d8eab7bb4e965f49c85dac5 /test | |
| parent | 41a44513226887c4ec9ef405403573a491c391ff (diff) | |
| download | ruby-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.rb | 3 |
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$ |
