diff options
author | guanglei <guanglei> | 2006-05-08 04:25:42 +0000 |
---|---|---|
committer | guanglei <guanglei> | 2006-05-08 04:25:42 +0000 |
commit | aa6af101e19e0128c461842b4e724a9eae72b753 (patch) | |
tree | 18e8ef8acae2efe4a07aa8045d10e7d018fe5750 /testsuite/parseok | |
parent | 972662787b66d69b199c5e52488c55491e9880f3 (diff) | |
download | systemtap-steved-aa6af101e19e0128c461842b4e724a9eae72b753.tar.gz systemtap-steved-aa6af101e19e0128c461842b4e724a9eae72b753.tar.xz systemtap-steved-aa6af101e19e0128c461842b4e724a9eae72b753.zip |
add testcases for epilogue mode probe aliases into parseok
Diffstat (limited to 'testsuite/parseok')
-rwxr-xr-x | testsuite/parseok/fifteen.stp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/parseok/fifteen.stp b/testsuite/parseok/fifteen.stp new file mode 100755 index 00000000..3597a2aa --- /dev/null +++ b/testsuite/parseok/fifteen.stp @@ -0,0 +1,7 @@ +#! stap -p1 + +/* the epilogue style alias definitions */ +probe syscall.read += kernel.function("sys_read") { +fildes = $fd +} + |