diff options
author | fche <fche> | 2005-11-03 21:20:52 +0000 |
---|---|---|
committer | fche <fche> | 2005-11-03 21:20:52 +0000 |
commit | 703621ae2cb0bec9cc12786f33381dbb890b9251 (patch) | |
tree | 25fa3746c1d2c60071a784e75feaa1d6b037da25 /testsuite | |
parent | 3c9dd85f7066ec8fe086c83c40ec4d4f70fd2128 (diff) | |
download | systemtap-steved-703621ae2cb0bec9cc12786f33381dbb890b9251.tar.gz systemtap-steved-703621ae2cb0bec9cc12786f33381dbb890b9251.tar.xz systemtap-steved-703621ae2cb0bec9cc12786f33381dbb890b9251.zip |
2005-11-03 Frank Ch. Eigler <fche@elastic.org>
PR 1329.
* tapsets.cxx (dwarf_query::add_probe_point): Look up section name
containing given address. Skip request if it came from .init.*.
* testsuite/semko/thirtytwo.stp: New test.
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/semko/thirtytwo.stp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/semko/thirtytwo.stp b/testsuite/semko/thirtytwo.stp new file mode 100755 index 00000000..f2fae56d --- /dev/null +++ b/testsuite/semko/thirtytwo.stp @@ -0,0 +1,4 @@ +#! stap -p2 + +// should fail since init_setup should be skipped because it is in .init.text +probe kernel.function("init_setup") { } |