summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuite/ChangeLog16
-rwxr-xr-xtestsuite/buildok/memory-all-probes.stp6
-rwxr-xr-xtestsuite/buildok/nfs-all-probes.stp5
-rwxr-xr-xtestsuite/buildok/nfsd-all-probes.stp5
-rwxr-xr-xtestsuite/buildok/process-all-probes.stp5
-rwxr-xr-xtestsuite/buildok/rpc-all-probes.stp5
-rwxr-xr-xtestsuite/buildok/scheduler-all-probes.stp5
-rwxr-xr-xtestsuite/buildok/scsi-all-probes.stp5
-rwxr-xr-xtestsuite/buildok/signal-all-probes.stp9
-rwxr-xr-xtestsuite/buildok/socket-all-probes.stp6
-rwxr-xr-xtestsuite/buildok/tcp-all-probes.stp6
-rwxr-xr-xtestsuite/buildok/udp-all-probes.stp6
-rwxr-xr-xtestsuite/buildok/vfs-all-probes.stp8
13 files changed, 87 insertions, 0 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index dc638be2..55b0c44a 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -1,3 +1,19 @@
+2007-10-04 Mike Mason <mmlnx@us.ibm.com>
+
+ * buildok/memory-all-probes.stp: New test that uses wildcarding to
+ determine if all probes are resolvable.
+ * buildok/nfs-all-probes.stp: Ditto
+ * buildok/nfsd-all-probes.stp: Ditto
+ * buildok/process-all-probes.stp: Ditto
+ * buildok/rpc-all-probes.stp: Ditto
+ * buildok/scheduler-all-probes.stp: Ditto
+ * buildok/scsi-all-probes.stp: Ditto
+ * buildok/signal-all-probes.stp: Ditto
+ * buildok/socket-all-probes.stp: Ditto
+ * buildok/tcp-all-probes.stp: Ditto
+ * buildok/udp-all-probes.stp: Ditto
+ * buildok/vfs-all-probes.stp: Ditto
+
2007-10-03 Frank Ch. Eigler <fche@elastic.org>
* systemtap.syscall/test.tcl: Don't list PASS on stdout.
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.*.*.* {}