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 1def0d8 commit de7fb26Copy full SHA for de7fb26
bootstraptest/runner.rb
@@ -469,7 +469,10 @@ def get_result_string(opt = '', **argh)
469
kw = self.err ? {err: self.err} : {}
470
out = IO.popen("#{BT.ruby} -W0 #{opt} #{filename}", **kw)
471
pid = out.pid
472
- out.read.tap{ Process.waitpid(pid); out.close }
+ result = out.read.tap{ Process.waitpid(pid); out.close }
473
+ # https://github.com/mmtk/mmtk-core/issues/654
474
+ result.gsub! /Warning: User attempted a collection request, but it is not supported in NoGC. The request is ignored.\n/, ''
475
+ result
476
ensure
477
raise Interrupt if $? and $?.signaled? && $?.termsig == Signal.list["INT"]
478
0 commit comments