diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-08-24 07:59:18 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-08-24 07:59:18 -0400 |
commit | 06aca46a39fc5f6362dc6e6fad6e9c2f837a87ce (patch) | |
tree | dfd1132ff6cf7533173b7039bcadd63ea10b1ade /testsuite | |
parent | c16d425a5dd60fd86efb76a429b65f87dfb5e44a (diff) | |
parent | cee35f73e024d1f2eacaa42c25b05075fc9039a3 (diff) | |
download | systemtap-steved-06aca46a39fc5f6362dc6e6fad6e9c2f837a87ce.tar.gz systemtap-steved-06aca46a39fc5f6362dc6e6fad6e9c2f837a87ce.tar.xz systemtap-steved-06aca46a39fc5f6362dc6e6fad6e9c2f837a87ce.zip |
Merge commit 'origin/master' into pr4225
* commit 'origin/master':
correct probe point reverse-engineering of probes for which we have no source file / line number
source whitespace cleanup
Fixed failure of buildok/process-all-probes.stp
clarify README instructions to spell out that running the testsuite is optional
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/ChangeLog | 4 | ||||
-rwxr-xr-x | testsuite/buildok/process-all-probes.stp | 9 |
2 files changed, 12 insertions, 1 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index 9c7f8fec..27b0a0c1 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2008-08-22 Wenji Huang <wenji.huang@oracle.com> + + * buildok/process-all-probes.stp: Change system-wide probes to detailed ones to avoid including user space ones. + 2008-08-15 David Smith <dsmith@redhat.com> * systemtap.base/utrace_p4.exp: Change system-wide probes from diff --git a/testsuite/buildok/process-all-probes.stp b/testsuite/buildok/process-all-probes.stp index ec6ceab0..91a96514 100755 --- a/testsuite/buildok/process-all-probes.stp +++ b/testsuite/buildok/process-all-probes.stp @@ -2,4 +2,11 @@ // Tests if all probes in the process tapset are resolvable. -probe process.* {} +probe process.create, + process.start, + process.exec, + process.exec_complete, + process.exit, + process.release +{ +} |