class RubyMemcheck::TestTask

def ruby(*args, **options, &block)

def ruby(*args, **options, &block)
  command = configuration.command(args)
  @reporter = TestTaskReporter.new(configuration)
  @reporter.setup
  sh(command, **options) do |ok, res|
    @reporter.report_valgrind_errors
    yield ok, res if block_given?
  end
end