summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/six.stp
diff options
context:
space:
mode:
authorgraydon <graydon>2005-08-31 03:05:39 +0000
committergraydon <graydon>2005-08-31 03:05:39 +0000
commit246b383e71b24882db18311a748d713c57a2108e (patch)
treee27f8baf030463152941112db10dbaf0e2800b67 /testsuite/buildok/six.stp
parentd7f37943633359c2e7e61ba8c84d15144aa3b87f (diff)
downloadsystemtap-steved-246b383e71b24882db18311a748d713c57a2108e.tar.gz
systemtap-steved-246b383e71b24882db18311a748d713c57a2108e.tar.xz
systemtap-steved-246b383e71b24882db18311a748d713c57a2108e.zip
2005-08-30 Graydon Hoare <graydon@redhat.com>
* tapsets.cxx (dwflpp::literal_stmt_for_local): Handle dwarf pointer-to-1-byte-means-char case (found in PR 1187) * parse.cxx (parse_symbol): Eliminate use of "." from target symbol parser, conflicting with string concatenation operator. * staptree.h (target_symbol::component_type) Eliminate comp_struct_pointer_member, since . and -> are considered the same now. * staptree.cxx (target_symbol::print): Likewise. * testsuite/buildok/seventeen.stp: Test solution on PR 1191. * testsuite/buildok/six.stp: Test working portion of PR 1155. * testsuite/semko/nineteen.stp: Unresolved portion of PR 1155.
Diffstat (limited to 'testsuite/buildok/six.stp')
-rwxr-xr-xtestsuite/buildok/six.stp6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuite/buildok/six.stp b/testsuite/buildok/six.stp
index a63ad99b..a11014fe 100755
--- a/testsuite/buildok/six.stp
+++ b/testsuite/buildok/six.stp
@@ -1,5 +1,9 @@
#! stap -p4
+# tests probing of an inline function: note that due to comments
+# listed in PR 1155 we cannot resolve the parameters of the inline
+# at the moment.
+
probe kernel.function("context_switch") {
- log ("switch from=" . hexstring($prev) . " to=" . hexstring($next))
+ log ("found an inline function")
}