diff options
author | wenji <wenji> | 2007-09-10 07:54:10 +0000 |
---|---|---|
committer | wenji <wenji> | 2007-09-10 07:54:10 +0000 |
commit | ee4d87cc3d310711ca1d0b58d75a722c2bce7396 (patch) | |
tree | d62bcabe2de8fecd216625f4f434f47e8ee97268 /testsuite/buildok/four.stp | |
parent | 006cc34da5ca154526b616f99492db99db417525 (diff) | |
download | systemtap-steved-ee4d87cc3d310711ca1d0b58d75a722c2bce7396.tar.gz systemtap-steved-ee4d87cc3d310711ca1d0b58d75a722c2bce7396.tar.xz systemtap-steved-ee4d87cc3d310711ca1d0b58d75a722c2bce7396.zip |
2007-09-10 Wenji Huang <wenji.huang@oracle.com>
* systemtap.stress/current.stp: Make module probe optional.
* buildok/four.stp: Ditto.
* buildok/twentyfive.stp: Ditto.
* semok/twelve.stp: Ditto.
Diffstat (limited to 'testsuite/buildok/four.stp')
-rwxr-xr-x | testsuite/buildok/four.stp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/testsuite/buildok/four.stp b/testsuite/buildok/four.stp index 8ceff188..7ecbc5c8 100755 --- a/testsuite/buildok/four.stp +++ b/testsuite/buildok/four.stp @@ -1,6 +1,12 @@ #! stap -p4 -probe module("ext3").function("*") +probe module("ext3").function("*") ? { log ("ext3 fn") } + +/*to avoid empty file*/ +probe begin +{ + +} |