summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-03-03 19:01:58 -0500
committerFrank Ch. Eigler <fche@elastic.org>2008-03-03 19:01:58 -0500
commitc108ad66d2218a1311b8891f1194d08179ae7c19 (patch)
tree66b3e148a84447d69f1340447c5edba8bf2055cd /testsuite
parent378f9227b04b876ff06af099715e7d60cdc49903 (diff)
parentb0be9bdb8c6972d847cad50a1e699f1fa806ad99 (diff)
downloadsystemtap-steved-c108ad66d2218a1311b8891f1194d08179ae7c19.tar.gz
systemtap-steved-c108ad66d2218a1311b8891f1194d08179ae7c19.tar.xz
systemtap-steved-c108ad66d2218a1311b8891f1194d08179ae7c19.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
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;
+}