From a0b500ac088667ae82b1fcd2ee0e5e51eb7f3f50 Mon Sep 17 00:00:00 2001 From: eban Date: Sat, 20 Nov 2004 13:58:20 +0000 Subject: * 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 --- test/runner.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/runner.rb') 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$ -- cgit v1.2.3