mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test/runner.rb: add Release.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
73e4384a23
commit
594f527d76
1 changed files with 4 additions and 3 deletions
|
@ -2,9 +2,10 @@ require 'test/unit/testsuite'
|
|||
require 'test/unit/testcase'
|
||||
require 'optparse'
|
||||
|
||||
Revision = %w$Revision$[1..-1]
|
||||
(Runner = Revision[0]).chomp!(",v")
|
||||
Version = Revision[1].scan(/\d+/, &method(:Integer))
|
||||
rcsid = %w$Id$
|
||||
Runner = rcsid[1].chomp(",v").freeze
|
||||
Version = rcsid[2].scan(/\d+/, &method(:Integer)).freeze
|
||||
Release = rcsid[3].freeze
|
||||
|
||||
class BulkTestSuite < Test::Unit::TestSuite
|
||||
def self.suite
|
||||
|
|
Loading…
Reference in a new issue