free_mutant/lib/mutant/killer/forked.rb
Markus Schirp ddff94c174 Fix style issue
Closes #30
2013-06-21 16:21:29 +02:00

48 lines
968 B
Ruby

module Mutant
class Killer
# Killer that executes other killer in forked environment
class Forked < self
# Initialize object
#
# @param [Killer] killer
# @param [Strategy] strategy
# @param [Mutation] mutation
#
# @api private
#
def initialize(killer, strategy, mutation)
@killer = killer
super(strategy, mutation)
end
private
# Run killer
#
# @return [true]
# if mutant was killed
#
# @return [false]
# otherwise
#
# @api private
#
def run
fork do
begin
killer = @killer.new(strategy, mutation)
exit(killer.success? ? CLI::EXIT_SUCCESS : CLI::EXIT_FAILURE)
rescue
exit(CLI::EXIT_FAILURE)
end
end
status = Process.wait2.last
status.exitstatus.zero?
end
end # Forked
end # Killer
end # Mutant