aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--load.c14
-rw-r--r--test/ruby/test_require.rb20
2 files changed, 31 insertions, 3 deletions
diff --git a/load.c b/load.c
index d3ea6d7512..b8a1bc92a5 100644
--- a/load.c
+++ b/load.c
@@ -840,8 +840,10 @@ rb_f_require_relative(VALUE obj, VALUE fname)
return rb_require_safe(rb_file_absolute_path(fname, base), rb_safe_level());
}
+typedef int (*feature_func)(const char *feature, const char *ext, int rb, int expanded, const char **fn);
+
static int
-search_required(VALUE fname, volatile VALUE *path, int safe_level)
+search_required(VALUE fname, volatile VALUE *path, int safe_level, feature_func rb_feature_p)
{
VALUE tmp;
char *ext, *ftptr;
@@ -945,6 +947,12 @@ load_ext(VALUE path)
/* Method is documented in vm.c */
+static int
+no_feature_p(const char *feature, const char *ext, int rb, int expanded, const char **fn)
+{
+ return 0;
+}
+
VALUE
rb_resolve_feature_path(VALUE klass, VALUE fname)
{
@@ -954,7 +962,7 @@ rb_resolve_feature_path(VALUE klass, VALUE fname)
fname = rb_get_path_check(fname, 0);
path = rb_str_encode_ospath(fname);
- found = search_required(path, &path, 0);
+ found = search_required(path, &path, 0, no_feature_p);
switch (found) {
case 'r':
@@ -1003,7 +1011,7 @@ rb_require_internal(VALUE fname, int safe)
rb_set_safe_level_force(0);
RUBY_DTRACE_HOOK(FIND_REQUIRE_ENTRY, RSTRING_PTR(fname));
- found = search_required(path, &path, safe);
+ found = search_required(path, &path, safe, rb_feature_p);
RUBY_DTRACE_HOOK(FIND_REQUIRE_RETURN, RSTRING_PTR(fname));
if (found) {
diff --git a/test/ruby/test_require.rb b/test/ruby/test_require.rb
index af8e6e30fa..a83509421d 100644
--- a/test/ruby/test_require.rb
+++ b/test/ruby/test_require.rb
@@ -897,4 +897,24 @@ class TestRequire < Test::Unit::TestCase
assert_operator(result, :end_with?, "/real/a.rb")
}
end
+
+ if defined?(RubyVM.resolve_feature_path)
+ def test_resolve_feature_path
+ paths, loaded = $:.dup, $".dup
+ Dir.mktmpdir do |tmp|
+ Tempfile.create(%w[feature .rb], tmp) do |file|
+ file.close
+ path = File.realpath(file.path)
+ dir, base = File.split(path)
+ $:.unshift(dir)
+ assert_equal([:rb, path], RubyVM.resolve_feature_path(base))
+ $".push(path)
+ assert_equal([:rb, path], RubyVM.resolve_feature_path(base))
+ end
+ end
+ ensure
+ $:.replace(paths)
+ $".replace(loaded)
+ end
+ end
end