summaryrefslogtreecommitdiff
path: root/tool/test/runner.rb
blob: 9001fc2d069ac69ae8d1ccf6e2c0d503225539a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true
require 'rbconfig'

require_relative "init"

case $0
when __FILE__
  dir = __dir__
when "-e"
  # No default directory
else
  dir = File.realdirpath("..", $0)
end
exit Test::Unit::AutoRunner.run(true, dir)