Sha256: a2403dab347d0ab0778770036bc5fc42603e6118ed925324a1b2157690832a4a

Contents?: true

Size: 787 Bytes

Versions: 42

Compression:

Stored size: 787 Bytes

Contents

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
        value = nil
        begin
          yield
        rescue => e
          value = e
        end

        writeme.write Marshal.dump(value)

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

      writeme.close
      Process.waitpid(pid)

      if exception = Marshal.load(readme.read)
        raise exception
      end

      readme.close
    end
  end
end

Version data entries

42 entries across 42 versions & 12 rubygems

Version Path
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-unbundled-1.9.5.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-unbundled-1.9.1.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/rspec-expectations-2.13.0/spec/support/in_sub_process.rb
rspec-expectations-2.99.2 spec/support/in_sub_process.rb
dxruby_rp5-0.0.4 spec/vendor/rspec-expectations-2.14.4/spec/support/in_sub_process.rb
rspec-expectations-2.99.1 spec/support/in_sub_process.rb
rspec-expectations-2.99.0 spec/support/in_sub_process.rb
rspec-expectations-2.99.0.rc1 spec/support/in_sub_process.rb
rspec-expectations-2.99.0.beta2 spec/support/in_sub_process.rb
rspec-expectations-2.14.5 spec/support/in_sub_process.rb
mango-0.8.0 vendor/bundler/ruby/2.1.0/gems/rspec-expectations-2.14.4/spec/support/in_sub_process.rb
mango-0.7.1 vendor/bundler/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/in_sub_process.rb
dxruby_rp5-0.0.3 spec/vendor/rspec-expectations-2.14.4/spec/support/in_sub_process.rb