Skip to content

Commit

Permalink
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tool/jt.rb
Original file line number Diff line number Diff line change
@@ -477,14 +477,14 @@ def test(*args)
test_tck
test_specs('run')
# test_mri # TODO (pitr-ch 29-Mar-2016): temporarily disabled since it uses refinements
test_integration
test_gems env: { 'HAS_REDIS' => 'true' }
test_integration ({})
test_gems ({ 'HAS_REDIS' => 'true' })
test_compiler
test_cexts if ENV['SULONG_DIR']
when 'compiler' then test_compiler(*rest)
when 'cexts' then test_cexts(*rest)
when 'integration' then test_integration(*rest)
when 'gems' then test_gems(*rest)
when 'integration' then test_integration({}, *rest)
when 'gems' then test_gems({}, *rest)
when 'specs' then test_specs('run', *rest)
when 'tck' then
args = []
@@ -555,7 +555,7 @@ def test_cexts(*args)
end
private :test_cexts

def test_integration(*args, env: {})
def test_integration(env={}, *args)
env_vars = env
jruby_opts = []

@@ -573,7 +573,7 @@ def test_integration(*args, env: {})
end
private :test_integration

def test_gems(*args, env: {})
def test_gems(env={}, *args)
env_vars = env
jruby_opts = []

0 comments on commit 1b0c7ff

Please sign in to comment.