diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2007-10-04 20:16:25 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2007-10-04 20:16:25 -0400 |
commit | 548fb400e1942d1df53ded19fa98d1b2000479d1 (patch) | |
tree | e52af93cd6fa0ae0598e5c813849441264b504af /testsuite/buildok | |
parent | 72bdd75f9c3d6b61bf4caf1b5351a3f6544c0b27 (diff) | |
parent | 0986ac384c966a2c789d7a0fd63fa190029143be (diff) | |
download | systemtap-steved-548fb400e1942d1df53ded19fa98d1b2000479d1.tar.gz systemtap-steved-548fb400e1942d1df53ded19fa98d1b2000479d1.tar.xz systemtap-steved-548fb400e1942d1df53ded19fa98d1b2000479d1.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/buildok')
-rwxr-xr-x | testsuite/buildok/memory-all-probes.stp | 6 | ||||
-rwxr-xr-x | testsuite/buildok/nfs-all-probes.stp | 5 | ||||
-rwxr-xr-x | testsuite/buildok/nfsd-all-probes.stp | 5 | ||||
-rwxr-xr-x | testsuite/buildok/process-all-probes.stp | 5 | ||||
-rwxr-xr-x | testsuite/buildok/rpc-all-probes.stp | 5 | ||||
-rwxr-xr-x | testsuite/buildok/scheduler-all-probes.stp | 5 | ||||
-rwxr-xr-x | testsuite/buildok/scsi-all-probes.stp | 5 | ||||
-rwxr-xr-x | testsuite/buildok/signal-all-probes.stp | 9 | ||||
-rwxr-xr-x | testsuite/buildok/socket-all-probes.stp | 6 | ||||
-rwxr-xr-x | testsuite/buildok/tcp-all-probes.stp | 6 | ||||
-rwxr-xr-x | testsuite/buildok/udp-all-probes.stp | 6 | ||||
-rwxr-xr-x | testsuite/buildok/vfs-all-probes.stp | 8 |
12 files changed, 71 insertions, 0 deletions
diff --git a/testsuite/buildok/memory-all-probes.stp b/testsuite/buildok/memory-all-probes.stp new file mode 100755 index 00000000..2b7845bc --- /dev/null +++ b/testsuite/buildok/memory-all-probes.stp @@ -0,0 +1,6 @@ +#! stap -p4 + +// Tests if all probes in memory.stp are resolvable. + +probe vm.*, + vm.*.* {} diff --git a/testsuite/buildok/nfs-all-probes.stp b/testsuite/buildok/nfs-all-probes.stp new file mode 100755 index 00000000..fb492c8c --- /dev/null +++ b/testsuite/buildok/nfs-all-probes.stp @@ -0,0 +1,5 @@ +#! stap -p4 + +// Tests if all probes in nfs.stp and nfs_proc.stp are resolvable. + +probe nfs.*.*, nfs.*.*.* {} diff --git a/testsuite/buildok/nfsd-all-probes.stp b/testsuite/buildok/nfsd-all-probes.stp new file mode 100755 index 00000000..9a290bed --- /dev/null +++ b/testsuite/buildok/nfsd-all-probes.stp @@ -0,0 +1,5 @@ +#! stap -p4 + +// Tests if all probes in nfsd.stp are resolvable. + +probe nfsd.*, nfsd.*.*, nfsd.*.*.* {} diff --git a/testsuite/buildok/process-all-probes.stp b/testsuite/buildok/process-all-probes.stp new file mode 100755 index 00000000..ec6ceab0 --- /dev/null +++ b/testsuite/buildok/process-all-probes.stp @@ -0,0 +1,5 @@ +#! stap -p4 + +// Tests if all probes in the process tapset are resolvable. + +probe process.* {} diff --git a/testsuite/buildok/rpc-all-probes.stp b/testsuite/buildok/rpc-all-probes.stp new file mode 100755 index 00000000..2ecc42c7 --- /dev/null +++ b/testsuite/buildok/rpc-all-probes.stp @@ -0,0 +1,5 @@ +#! stap -p4 + +// Tests if all probes in rpc.stp are resolvable. + +probe sunrpc.*, sunrpc.*.*, sunrpc.*.*.* {} diff --git a/testsuite/buildok/scheduler-all-probes.stp b/testsuite/buildok/scheduler-all-probes.stp new file mode 100755 index 00000000..0e06997b --- /dev/null +++ b/testsuite/buildok/scheduler-all-probes.stp @@ -0,0 +1,5 @@ +#! stap -p4 + +// Tests if all probes in the scheduler tapset are resolvable. + +probe scheduler.* {} diff --git a/testsuite/buildok/scsi-all-probes.stp b/testsuite/buildok/scsi-all-probes.stp new file mode 100755 index 00000000..d23759c1 --- /dev/null +++ b/testsuite/buildok/scsi-all-probes.stp @@ -0,0 +1,5 @@ +#! stap -p4 + +// Tests if all probes in the scsi tapset are resolvable. + +probe scsi.* {} diff --git a/testsuite/buildok/signal-all-probes.stp b/testsuite/buildok/signal-all-probes.stp new file mode 100755 index 00000000..6e7a080a --- /dev/null +++ b/testsuite/buildok/signal-all-probes.stp @@ -0,0 +1,9 @@ +#! stap -p4 + +// Tests if all probes in the signal tapset are resolvable. + +probe signal.*, + signal.*.*, + _signal.*.*, + _signal.*.*.* +{} diff --git a/testsuite/buildok/socket-all-probes.stp b/testsuite/buildok/socket-all-probes.stp new file mode 100755 index 00000000..3fe9d488 --- /dev/null +++ b/testsuite/buildok/socket-all-probes.stp @@ -0,0 +1,6 @@ +#! stap -p4 + +// Tests if all probes in the socket tapset are resolvable. + +probe socket.*, + socket.*.* {} diff --git a/testsuite/buildok/tcp-all-probes.stp b/testsuite/buildok/tcp-all-probes.stp new file mode 100755 index 00000000..dec6ecf7 --- /dev/null +++ b/testsuite/buildok/tcp-all-probes.stp @@ -0,0 +1,6 @@ +#! stap -p4 + +// Tests if all probes in the tcp tapset are resolvable. + +probe tcp.*, + tcp.*.* {} diff --git a/testsuite/buildok/udp-all-probes.stp b/testsuite/buildok/udp-all-probes.stp new file mode 100755 index 00000000..6e421c7e --- /dev/null +++ b/testsuite/buildok/udp-all-probes.stp @@ -0,0 +1,6 @@ +#! stap -p4 + +// Tests if all probes in the udp tapset are resolvable. + +probe udp.*, + udp.*.* {} diff --git a/testsuite/buildok/vfs-all-probes.stp b/testsuite/buildok/vfs-all-probes.stp new file mode 100755 index 00000000..d6b6fb0b --- /dev/null +++ b/testsuite/buildok/vfs-all-probes.stp @@ -0,0 +1,8 @@ +#! stap -p4 + +// Tests if all probes in the vfs.stp are resolvable. + +probe vfs.*, + vfs.*.*, + generic.*.*, + generic.*.*.* {} |