blob: f9ed25a93144ead3ce4c6496b70cf27adcb3c90b (
plain)
1
2
3
4
5
6
7
8
9
|
require 'rbconfig'
exit if CROSS_COMPILING
require 'test/unit'
rcsid = %w$Id$
Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
Release = rcsid[3].freeze
exit Test::Unit::AutoRunner.run(true, File.dirname($0))
|