summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/dtrace/test_function_entry.rb5
-rw-r--r--test/dtrace/test_singleton_function.rb5
2 files changed, 6 insertions, 4 deletions
diff --git a/test/dtrace/test_function_entry.rb b/test/dtrace/test_function_entry.rb
index fc07ccc455..2fac424fe4 100644
--- a/test/dtrace/test_function_entry.rb
+++ b/test/dtrace/test_function_entry.rb
@@ -18,7 +18,7 @@ ruby$target:::method-entry
}
assert_equal 10, foo_calls.length
- line = '2'
+ line = '3'
foo_calls.each { |f| assert_equal line, f[3] }
foo_calls.each { |f| assert_equal rb_file, f[2] }
}
@@ -39,7 +39,7 @@ ruby$target:::method-return
}
assert_equal 10, foo_calls.length
- line = '2'
+ line = '3'
foo_calls.each { |f| assert_equal line, f[3] }
foo_calls.each { |f| assert_equal rb_file, f[2] }
}
@@ -77,6 +77,7 @@ ruby$target:::method-return
private
def ruby_program
<<-eoruby
+ TracePoint.new{}.enable
class Foo
def foo; end
end
diff --git a/test/dtrace/test_singleton_function.rb b/test/dtrace/test_singleton_function.rb
index 3698a02c93..a896b91975 100644
--- a/test/dtrace/test_singleton_function.rb
+++ b/test/dtrace/test_singleton_function.rb
@@ -18,7 +18,7 @@ ruby$target:::method-entry
}
assert_equal 10, foo_calls.length
- line = '2'
+ line = '3'
foo_calls.each { |f| assert_equal line, f[3] }
foo_calls.each { |f| assert_equal rb_file, f[2] }
}
@@ -38,7 +38,7 @@ ruby$target:::method-return
}
assert_equal 10, foo_calls.length
- line = '2'
+ line = '3'
foo_calls.each { |f| assert_equal line, f[3] }
foo_calls.each { |f| assert_equal rb_file, f[2] }
}
@@ -46,6 +46,7 @@ ruby$target:::method-return
def ruby_program
<<-eoruby
+ TracePoint.new{}.enable
class Foo
def self.foo; end
end