summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_rubyoptions.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-30 07:42:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-30 07:42:04 +0000
commita5efaf33b89e0fa701f5d79b4bc786ac7002e614 (patch)
treea6c8b621e79d496d94c1425dde095c8e1732d6b9 /test/ruby/test_rubyoptions.rb
parentd30ab696cdd0b081558e7ba391960525191314a8 (diff)
downloadruby-a5efaf33b89e0fa701f5d79b4bc786ac7002e614.tar.gz
ruby-a5efaf33b89e0fa701f5d79b4bc786ac7002e614.tar.xz
ruby-a5efaf33b89e0fa701f5d79b4bc786ac7002e614.zip
* vm_eval.c (rb_search_method_emtry, rb_method_call_status): split
from rb_call0(). * vm_eval.c (rb_check_funcall): get rid of raising exceptions and hiding further exceptions. [ruby-dev:39584] * vm_eval.c (rb_funcall_no_recursive): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25572 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_rubyoptions.rb')
-rw-r--r--test/ruby/test_rubyoptions.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 7e4ac8cfb..d4143cffb 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -53,9 +53,9 @@ class TestRubyOptions < Test::Unit::TestCase
end
def test_debug
- assert_in_out_err(%w(-de) + ["p $DEBUG"], "", %w(true), //)
+ assert_in_out_err(%w(-de) + ["p $DEBUG"], "", %w(true), [])
- assert_in_out_err(%w(--debug -e) + ["p $DEBUG"], "", %w(true), //)
+ assert_in_out_err(%w(--debug -e) + ["p $DEBUG"], "", %w(true), [])
end
def test_verbose