From b8da0ad19d9dfcf88c4cd6dcf7b8aa73fc5016d7 Mon Sep 17 00:00:00 2001 From: fche Date: Fri, 30 Mar 2007 19:17:02 +0000 Subject: 2007-03-30 Frank Ch. Eigler PR 1570 * NEWS: Document probe handler language change re. inline functions. * stapprobes.5.in: Likewise. * tapsets.cxx: Many changes to simplify caches and implement new handling of inline functions, removed of stubs for future probes. * elaborate.cxx (derived_probe printsig_nested): New function. * elaborate.h: Declare it. * main.cxx (usage): Clarify "-r" meaning. (main): Tweak related "-p 4" message. 2007-03-30 Frank Ch. Eigler PR 1570. * memory.stp, scheduler.stp, signal.stp, LKET/signal.stp: Adapt to .inline -> .function change. 2007-03-30 Frank Ch. Eigler PR 1570 * */*.stp: Adapt to .inline -> .function change. * lib/stap_run.exp, stap_run2.exp, stap_run_binary.exp: Shorten pass/fail dejagnu log lines. * systemtap.syscall/sys.stp, test.tcl: Make slightly more compatible and failure more verbose. --- testsuite/systemtap.syscall/sys.stp | 4 ++-- testsuite/systemtap.syscall/test.tcl | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'testsuite/systemtap.syscall') diff --git a/testsuite/systemtap.syscall/sys.stp b/testsuite/systemtap.syscall/sys.stp index ab822ebb..e3564a15 100755 --- a/testsuite/systemtap.syscall/sys.stp +++ b/testsuite/systemtap.syscall/sys.stp @@ -11,7 +11,7 @@ probe begin { } -probe syscall.* { +probe syscall.* ? { if (pid() == target()) { if (entry) printf("\n") printf("%s%s: %s (%s) = ", indent_str[indent], execname(), name, argstr) @@ -21,7 +21,7 @@ probe syscall.* { } } -probe syscall.*.return { +probe syscall.*.return ? { if (pid() == target()) { if (indent) indent-- if (entry) diff --git a/testsuite/systemtap.syscall/test.tcl b/testsuite/systemtap.syscall/test.tcl index 082eaabe..8c228cba 100755 --- a/testsuite/systemtap.syscall/test.tcl +++ b/testsuite/systemtap.syscall/test.tcl @@ -86,7 +86,10 @@ foreach line [split $output "\n"] { if {$i >= $ind} { puts "PASS" } else { - puts "$testname FAILED" + puts "$testname FAILED. output of \"$cmd\" was:" + puts "------------------------------------------" + puts $output + puts "------------------------------------------" puts "RESULTS: (\'*\' = MATCHED EXPECTED)" set i 0 foreach line [split $output "\n"] { -- cgit