summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-21 13:36:17 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-21 13:36:17 +0000
commit914611adbcaec6a2711d30fcc1ff136e02efecf8 (patch)
treee9ae6696cc6bb75594f6eb12aa9827800926e891 /test/ruby
parent9848f0d0ca3b086383a0df3a5baed973b6bafa26 (diff)
* test/ruby/test_iseq.rb: disable a test which checks features
removed at r38532. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38535 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_iseq.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_iseq.rb b/test/ruby/test_iseq.rb
index 7d46004802..829b72ffdc 100644
--- a/test/ruby/test_iseq.rb
+++ b/test/ruby/test_iseq.rb
@@ -60,7 +60,7 @@ class TestISeq < Test::Unit::TestCase
iseq = ISeq.of(self.class.instance_method(:method_test_line_trace))
assert_equal([LINE_BEFORE_METHOD + 3, LINE_BEFORE_METHOD + 5], iseq.line_trace_all)
- end
+ end if false # TODO: now, it is only for C APIs.
LINE_OF_HERE = __LINE__
def test_location