Module: SimpleCov::ProcessForkHook

Defined in:
lib/simplecov/process.rb

Overview

Prepended onto Process’s singleton class so every fork — direct or via Kernel#fork / IO.popen — re-runs SimpleCov’s at_fork callback in the child.

Instance Method Summary collapse

Instance Method Details

#_forkObject



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/simplecov/process.rb', line 17

def _fork
  active = defined?(SimpleCov) && Coverage.running?
  # Assign the next serial in the PARENT, before the fork, so the child
  # inherits its own stable ordinal via copy-on-write. The default
  # at_fork uses it (instead of the child pid) to name the subprocess's
  # result, keeping that name identical across runs. See issue #1171.
  SimpleCov.next_subprocess_serial! if active
  pid = super
  if pid.zero? && active
    # Mark the child here, independent of whatever custom at_fork block
    # the user installed, so `final_result_process?` can keep forked
    # workers from each producing the final report. See issue #1171.
    SimpleCov.mark_forked_subprocess!
    SimpleCov.at_fork.call(::Process.pid)
  end
  pid
end