aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_rubyoptions.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-05 06:59:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-05 06:59:12 +0000
commitaf97da84edac2ccbacc9b10661002b1ddf86e7f8 (patch)
treeb624c7084fe708aa5443ebdad5ad70ce861b52ba /test/ruby/test_rubyoptions.rb
parent2c2ae5b16450db3597815d190c557e82c10104d6 (diff)
downloadruby-af97da84edac2ccbacc9b10661002b1ddf86e7f8.tar.gz
* ruby.c (process_options, load_file_internal): $0 seen from
required libraries by -r option should be the main script. [ruby-core:23717] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_rubyoptions.rb')
-rw-r--r--test/ruby/test_rubyoptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index dcdfd85fea..03cea47ea9 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -323,7 +323,7 @@ class TestRubyOptions < Test::Unit::TestCase
bug1573 = '[ruby-core:23717]'
assert_equal(false, File.exist?(notexist))
assert_in_out_err(["-r", notexist, "-ep"], "", [], /\A-e:.* -- #{pat} \(LoadError\)\Z/, bug1573)
- assert_in_out_err([notexist], "", [], /\A#{pat}:.* -- #{pat} \(LoadError\)\Z/, bug1573)
+ assert_in_out_err([notexist], "", [], /\A#{rubybin}:.* -- #{pat} \(LoadError\)\Z/, bug1573)
end
def test_program_name