File: in_sub_process.rb

package info (click to toggle)
ruby-rspec-core 2.14.7-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,756 kB
  • ctags: 1,195
  • sloc: ruby: 12,708; makefile: 14
file content (37 lines) | stat: -rw-r--r-- 807 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module InSubProcess
  if RUBY_PLATFORM == 'java'
    def in_sub_process
      pending "This spec requires forking to work properly, " +
              "and JRuby does not support forking"
    end
  else
    # Useful as a way to isolate a global change to a subprocess.
    def in_sub_process
      readme, writeme = IO.pipe

      pid = Process.fork do
        exception = nil
        begin
          yield
        rescue Exception => e
          exception = e
        end

        writeme.write Marshal.dump(exception)

        readme.close
        writeme.close
        exit! # prevent at_exit hooks from running (e.g. minitest)
      end

      writeme.close
      Process.waitpid(pid)

      exception = Marshal.load(readme.read)
      readme.close

      raise exception if exception
    end
  end
end