From b7a1480540d401704f12132b52f04aea6fdf42c3 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 11 May 2008 13:39:35 +0000 Subject: * bootstraptest/runner.rb (main): handle relative path -r options. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/runner.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bootstraptest') diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index b5237c21f5..07d6efcb61 100644 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -52,7 +52,8 @@ def main when /\A--ruby=(.*)/ @ruby = $1 @ruby.gsub!(/^([^ ]*)/){File.expand_path($1)} - @ruby.gsub!(/-I([^ ]*)/){"-I"+File.expand_path($1)} + @ruby.gsub!(/(\s+-I\s*)(\S+)/){$1+File.expand_path($2)} + @ruby.gsub!(/(\s+-r\s*)(\.\.?\/\S+)/){$1+File.expand_path($2)} true when /\A--sets=(.*)/ tests = Dir.glob("#{File.dirname($0)}/test_{#{$1}}*.rb") -- cgit v1.2.3