We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d7ef9 commit 3adf74aCopy full SHA for 3adf74a
tool/jt.rb
@@ -812,7 +812,9 @@ def test(*args)
812
when 'basictest' then test_basictest(*rest)
813
when 'bootstraptest' then test_bootstraptest(*rest)
814
when 'mri' then test_mri(*rest)
815
- when 'unit', 'unittest' then mx 'unittest', 'org.truffleruby'
+ when 'unit', 'unittest'
816
+ tests = rest.empty? ? ['org.truffleruby'] : rest
817
+ mx 'unittest', *tests
818
when 'tck' then mx 'tck'
819
else
820
if File.expand_path(path, TRUFFLERUBY_DIR).start_with?("#{TRUFFLERUBY_DIR}/test")
0 commit comments