diff options
author | fche <fche> | 2007-03-30 19:17:02 +0000 |
---|---|---|
committer | fche <fche> | 2007-03-30 19:17:02 +0000 |
commit | b8da0ad19d9dfcf88c4cd6dcf7b8aa73fc5016d7 (patch) | |
tree | 82225c0ef08f075dc0a5e9a8d59ed3d37a072b1c /testsuite/systemtap.stress/all_kernel_functions.exp | |
parent | 3be43eac84e5819b72dd311c3283ef2ea5bb1d83 (diff) | |
download | systemtap-steved-b8da0ad19d9dfcf88c4cd6dcf7b8aa73fc5016d7.tar.gz systemtap-steved-b8da0ad19d9dfcf88c4cd6dcf7b8aa73fc5016d7.tar.xz systemtap-steved-b8da0ad19d9dfcf88c4cd6dcf7b8aa73fc5016d7.zip |
2007-03-30 Frank Ch. Eigler <fche@redhat.com>
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 <fche@elastic.org>
PR 1570.
* memory.stp, scheduler.stp, signal.stp, LKET/signal.stp: Adapt
to .inline -> .function change.
2007-03-30 Frank Ch. Eigler <fche@elastic.org>
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.
Diffstat (limited to 'testsuite/systemtap.stress/all_kernel_functions.exp')
-rw-r--r-- | testsuite/systemtap.stress/all_kernel_functions.exp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/testsuite/systemtap.stress/all_kernel_functions.exp b/testsuite/systemtap.stress/all_kernel_functions.exp index f54f53e1..6dded726 100644 --- a/testsuite/systemtap.stress/all_kernel_functions.exp +++ b/testsuite/systemtap.stress/all_kernel_functions.exp @@ -17,7 +17,7 @@ proc genload {} { proc probe_ok {probepoint} { set cmd {exec stap -p2 -e} lappend cmd "probe $probepoint {}" - return ![catch $cmd] + return [expr ![catch $cmd]] } set systemtap_script { @@ -25,12 +25,10 @@ set systemtap_script { probe %s { stat[probefunc()] <<< 1 } - probe begin { - log("systemtap starting probe") - } + probe begin { log ("systemtap starting probe") } probe end { - log("systemtap ending probe") - foreach (func in stat) + log ("systemtap ending probe") + foreach (func in stat limit 5) # don't overflow expect buffer printf("%%d %%s\n", @count(stat[func]), func) } } |