mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
a0b500ac08
using CROSS_COMPILNG. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
229 B
Ruby
9 lines
229 B
Ruby
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(false, File.dirname($0))
|