aboutsummaryrefslogtreecommitdiffstats
path: root/test/dtrace/test_function_entry.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/dtrace/test_function_entry.rb')
-rw-r--r--test/dtrace/test_function_entry.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dtrace/test_function_entry.rb b/test/dtrace/test_function_entry.rb
index 97302afe17..d7c7936f4c 100644
--- a/test/dtrace/test_function_entry.rb
+++ b/test/dtrace/test_function_entry.rb
@@ -4,7 +4,7 @@ module DTrace
class TestFunctionEntry < TestCase
def test_function_entry
probe = <<-eoprobe
-ruby$target:::function-entry
+ruby$target:::method-entry
/arg0 && arg1 && arg2/
{
printf("%s %s %s %d\\n", copyinstr(arg0), copyinstr(arg1), copyinstr(arg2), arg3);
@@ -25,7 +25,7 @@ ruby$target:::function-entry
def test_function_return
probe = <<-eoprobe
-ruby$target:::function-return
+ruby$target:::method-return
/arg0 && arg1 && arg2/
{
printf("%s %s %s %d\\n", copyinstr(arg0), copyinstr(arg1), copyinstr(arg2), arg3);