1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_settracefunc.rb (test_call, test_class): line number

was changed at r19592.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-09-30 15:31:06 +00:00
parent 1625da9931
commit a75eadef3b
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Wed Oct 1 00:29:48 2008 Yusuke Endoh <mame@tsg.ne.jp>
* test/ruby/test_settracefunc.rb (test_call, test_class): line number
was changed at r19592.
Wed Oct 1 00:20:38 2008 Tanaka Akira <akr@fsij.org>
* process.c (check_exec_redirect): don't depend on rb_stdout and

View file

@ -60,7 +60,7 @@ class TestSetTraceFunc < Test::Unit::TestCase
events.shift)
assert_equal(["line", 7, __method__, self.class],
events.shift)
assert_equal(["call", 6, :add, self.class],
assert_equal(["call", 4, :add, self.class],
events.shift)
assert_equal(["line", 5, :add, self.class],
events.shift)
@ -68,7 +68,7 @@ class TestSetTraceFunc < Test::Unit::TestCase
events.shift)
assert_equal(["c-return", 5, :+, Fixnum],
events.shift)
assert_equal(["return", 6, :add, self.class],
assert_equal(["return", 4, :add, self.class],
events.shift)
assert_equal(["line", 8, __method__, self.class],
events.shift)
@ -118,9 +118,9 @@ class TestSetTraceFunc < Test::Unit::TestCase
events.shift)
assert_equal(["c-return", 8, :new, Class],
events.shift)
assert_equal(["call", 6, :bar, Foo],
assert_equal(["call", 5, :bar, Foo],
events.shift)
assert_equal(["return", 6, :bar, Foo],
assert_equal(["return", 5, :bar, Foo],
events.shift)
assert_equal(["line", 9, __method__, self.class],
events.shift)