module M

def self.run argv

Accept arguments coming from bin/m and run tests, then bail out immediately.
def self.run argv
  # sync output since we're going to exit hard and fast
  $stdout.sync = true
  $stderr.sync = true
  exit! Runner.new(argv).run
end