diff options
author | fche <fche> | 2007-04-02 21:17:35 +0000 |
---|---|---|
committer | fche <fche> | 2007-04-02 21:17:35 +0000 |
commit | 396afcee5ada2d207b7a6691d4b7ce473e7b2a65 (patch) | |
tree | b079f8b72f32e9b6bc7d89824134a492982f9f67 /testsuite | |
parent | 2901e41a5b56517f7e3df2e5a1f60085206d17ea (diff) | |
download | systemtap-steved-396afcee5ada2d207b7a6691d4b7ce473e7b2a65.tar.gz systemtap-steved-396afcee5ada2d207b7a6691d4b7ce473e7b2a65.tar.xz systemtap-steved-396afcee5ada2d207b7a6691d4b7ce473e7b2a65.zip |
2007-04-02 Frank Ch. Eigler <fche@elastic.org>
* tapsets.cxx (query_dwarf_func): Skip non-inlined functions
for .function().inline case.
2007-04-02 Frank Ch. Eigler <fche@elastic.org>
* socket-trace.stp, small_demos/prof.stp, top.stp: Adapt to
.inline -> .function change.
* semko/twentyone.stp: Ditto.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/ChangeLog | 1 | ||||
-rwxr-xr-x | testsuite/semko/twentyone.stp | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index 9d1c2cc3..bf9bfae6 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -3,6 +3,7 @@ * systemtap.samples/poll_map.stp, profile.stp, syscalls.stp: Continue adopting to .inline -> .function change. * systemtap.samples/topsys.stp, systemtap.stress/current.stp: Ditto. + * semko/twentyone.stp: Ditto. 2007-03-30 Frank Ch. Eigler <fche@elastic.org> 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") } |