diff options
Diffstat (limited to 'testsuite/semko/twentyone.stp')
-rwxr-xr-x | testsuite/semko/twentyone.stp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/semko/twentyone.stp b/testsuite/semko/twentyone.stp index c01725e2..910fc2c9 100755 --- a/testsuite/semko/twentyone.stp +++ b/testsuite/semko/twentyone.stp @@ -1,8 +1,8 @@ #! stap -p2 # tests that an inline function is *not* matched using -# the function() pattern +# the function().call pattern -probe kernel.function("context_switch") { - log ("found an inline via function()") +probe kernel.function("context_switch").call { + log ("found an inline via function().call") } |