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 de7fb26 commit 04cc11cCopy full SHA for 04cc11c
bootstraptest/runner.rb
@@ -469,10 +469,7 @@ 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
- 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
+ out.read.tap{ Process.waitpid(pid); out.close }
476
ensure
477
raise Interrupt if $? and $?.signaled? && $?.termsig == Signal.list["INT"]
478
0 commit comments