From 958817d50da2738317da85894d7e0331a306d2f0 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 15 Sep 2018 09:48:42 +0000 Subject: [PATCH] Expand spec files to realpaths * spec/mspec/lib/mspec/utils/script.rb (MSpecScript#entries): expand the given spec path to the realpath, not to require a library by realpath and symbolic link path from the spec file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64749 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- spec/mspec/lib/mspec/utils/script.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spec/mspec/lib/mspec/utils/script.rb b/spec/mspec/lib/mspec/utils/script.rb index db5a33a91a..6e47b94fd6 100644 --- a/spec/mspec/lib/mspec/utils/script.rb +++ b/spec/mspec/lib/mspec/utils/script.rb @@ -189,7 +189,10 @@ class MSpecScript end patterns.each do |pattern| - expanded = File.expand_path(pattern) + expanded = File.realpath(pattern) + rescue Errno::ENOENT + next + else if File.file?(expanded) && expanded.end_with?('.rb') return [expanded] elsif File.directory?(expanded)