summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/ChangeLog5
-rwxr-xr-xtestsuite/buildok/twentynine.stp6
2 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index aee14fe6..2f6caac1 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-03 Frank Ch. Eigler <fche@elastic.org>
+
+ PR5516
+ * buildok/twentynine.stp: New test.
+
2008-02-27 Dave Brolley <brolley@redhat.com>
PR5189
diff --git a/testsuite/buildok/twentynine.stp b/testsuite/buildok/twentynine.stp
new file mode 100755
index 00000000..826f5e73
--- /dev/null
+++ b/testsuite/buildok/twentynine.stp
@@ -0,0 +1,6 @@
+#! stap -gp4
+
+probe kernel.function("icmp_rcv") {
+ printf("skb = %x\n", $skb);
+ $skb = 0;
+}