summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-20 08:47:26 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-20 08:47:26 +0000
commit7eecc7b8b4c790d07322bdb31d7baf93eb194729 (patch)
tree434e43a54b90840ef46ead4426a4271054f4ed28 /test/lib
parent3845a506046502f2f5e704cab87b66c6988f7229 (diff)
require 'rbconifg' earlier.
* test/lib/jit_support.rb: require rbconfig here. * test/ruby/test_jit.rb: rbconfig should be required before. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/jit_support.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb
index c327aa1364..d70709b87f 100644
--- a/test/lib/jit_support.rb
+++ b/test/lib/jit_support.rb
@@ -1,3 +1,5 @@
+require 'rbconfig'
+
module JITSupport
JIT_TIMEOUT = 600 # 10min for each...
JIT_SUCCESS_PREFIX = 'JIT success \(\d+\.\dms\)'