1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* variable.c (rb_path2class): don't raise NameError when the middle

constant of the path is not defined but defined on toplevel.
  [ruby-core:41410] [Bug #5691]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33909 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-11-30 14:44:06 +00:00
parent ed73a902b8
commit f6f4534382
5 changed files with 34 additions and 1 deletions

View file

@ -0,0 +1,6 @@
$srcs = Dir[File.join($srcdir, "*.{#{SRC_EXT.join(%q{,})}}")]
inits = $srcs.map {|s| File.basename(s, ".*")}
inits.delete("init")
inits.map! {|s|"X(#{s})"}
$defs << "-DTEST_INIT_FUNCS(X)=\"#{inits.join(' ')}\""
create_makefile("-test-/path_to_class/path_to_class")

View file

@ -0,0 +1,9 @@
#include "ruby.h"
void
Init_path_to_class(void)
{
VALUE klass = rb_path2class("Test_PathToClass");
rb_define_singleton_method(klass, "path_to_class", rb_path_to_class, 1);
}