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 02dbf93 commit 2576c26Copy full SHA for 2576c26
tool/jt.rb
@@ -282,6 +282,10 @@ def truffleruby_jvm?
282
truffleruby? and !truffleruby_native?
283
end
284
285
+ def jdk8?
286
+ graalvm_home and !Dir.exist?("#{graalvm_home}/jmods")
287
+ end
288
+
289
def truffleruby_launcher_path
290
require_ruby_launcher!
291
@truffleruby_launcher_path ||= File.expand_path('../truffleruby', @ruby_launcher_realpath)
@@ -924,7 +928,7 @@ def rebuild(*options)
924
928
vm_args << "--core-load-path=#{TRUFFLERUBY_DIR}/src/main/ruby/truffleruby"
925
929
926
930
927
- if ci? and truffleruby_jvm?
931
+ if ci? and truffleruby_jvm? and !jdk8?
932
vm_args << '--vm.Xlog:os+thread=off' # GR-23507: prevent thread warnings on stdout to break specs/tests
933
934
0 commit comments