#!/usr/bin/ruby.ruby3.4 

# These fix 1.8.7 test/unit results where a DRbUnknown is returned because the testdrb client doesn't have the classes
# in its local namespace.  (See issue #2)
begin
  require 'minitest/unit'
rescue LoadError
  # MiniTest is Ruby 1.9, and the classes below only exist in the pre 1.9 test/unit
  require 'test/unit/testresult'
  require 'test/unit/failure'
end

require 'drb'
DRb.start_service("druby://127.0.0.1:0") # this allows Ruby to do some magical stuff so you can pass an output stream over DRb.
test_server = DRbObject.new_with_uri("druby://127.0.0.1:8988")
result = test_server.run(ARGV, $stderr, $stdout)

