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 139963a commit 67e5f6aCopy full SHA for 67e5f6a
tool/jt.rb
@@ -915,9 +915,14 @@ def rebuild(*options)
915
end
916
917
918
- if core_load_path && truffleruby? && !truffleruby_native?
919
- add_experimental_options.call
920
- vm_args << "--core-load-path=#{TRUFFLERUBY_DIR}/src/main/ruby/truffleruby"
+ if truffleruby? && !truffleruby_native?
+ if core_load_path
+ add_experimental_options.call
921
+ vm_args << "--core-load-path=#{TRUFFLERUBY_DIR}/src/main/ruby/truffleruby"
922
+ end
923
+ if ci?
924
+ vm_args << '--vm.Xlog:os+thread=off' # GR-23507: prevent thread warnings on stdout to break specs/tests
925
926
927
928
[vm_args, ruby_args + args, options]
0 commit comments