summaryrefslogtreecommitdiff
path: root/yarvtest/runner.rb
blob: 25b813e99c481a597d8c8a9f9dff1efe0ac2d894 (plain)
1
2
3
4
5
6
7
8
9
10
require 'test/unit'

if $0 == __FILE__
  # exit Test::Unit::AutoRunner.run(false, File.dirname($0))
  Dir.glob(File.dirname($0) + '/test_*'){|file|
    p file
    require file
  }
end