summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-13 18:50:31 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-13 18:50:31 +0000
commitc9e700713454e059a3f62ec8749381fa680a61e3 (patch)
tree5f9638723d8cc0417022771ae1c2084633e0cb19 /test
parentc51784711a915a3f2830e97a364e7fad7e740523 (diff)
merge revision(s) 25693:
* eval.c (method_inspect, method_name, mnew): Bug fix when method created from an alias. Based on a patch by Peter Vanbroekhoven [ruby-core:22040] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@26083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/runner.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runner.rb b/test/runner.rb
index d274bc8929..767947b7f2 100644
--- a/test/runner.rb
+++ b/test/runner.rb
@@ -1,7 +1,7 @@
require 'test/unit'
rcsid = %w$Id$
-Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
-Release = rcsid[3].freeze
+Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze rescue nil
+Release = rcsid[3].freeze rescue nil
exit Test::Unit::AutoRunner.run(true, File.dirname($0))