From 86333c5231e7f07ae56443a72155a59aa8dd1ddb Mon Sep 17 00:00:00 2001 From: graydon Date: Fri, 2 Sep 2005 01:13:33 +0000 Subject: 2005-09-01 Graydon Hoare PR systemtap/1244 * testsuite/buildok/eighteen.stp: New test. * tapsets.cxx (dwflpp::literal_stmt_for_local) (query_statement, query_inline_instance_info) (query_func_info, query_srcfile_line, query_cu) (var_expanding_copy_visitor, visit_target_symbol) (dwarf_derived_probe): Fix 1244. --- testsuite/buildok/eighteen.stp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 testsuite/buildok/eighteen.stp (limited to 'testsuite') diff --git a/testsuite/buildok/eighteen.stp b/testsuite/buildok/eighteen.stp new file mode 100755 index 00000000..4beda31a --- /dev/null +++ b/testsuite/buildok/eighteen.stp @@ -0,0 +1,11 @@ +#! stap -p4 + +# this tests access to parameters from prologue-end PC addresses which +# land inside the scope of an inline instance; the functionality is +# provided by searching the function's DIE rather than the by PC +# proximity. (PR 1244) + +probe kernel.function("audit_getname@kernel/auditsc.c") +{ + log($name); +} -- cgit