Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/jt.rb
Original file line number Diff line number Diff line change
@@ -738,7 +738,7 @@ def test_specs(command, *args)
if args.delete('--graal')
javacmd, javacmd_options = Utilities.find_graal_javacmd_and_options
env_vars["JAVACMD"] = javacmd
options.push *(javacmd_options.map { |o| "-T#{o}" })
options.concat javacmd_options.map { |o| "-T#{o}" }
end

if args.delete('--jdebug')
@@ -763,7 +763,7 @@ def test_specs(command, *args)
private :test_specs

def test_tck(*args)
mvn *args + ['-Ptck']
mvn *args, '-Ptck'
end
private :test_tck

0 comments on commit c3e485a

Please sign in to comment.