summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2009-02-19 12:53:32 +1000
committerddomingo <ddomingo@redhat.com>2009-02-19 12:53:32 +1000
commit1a0264b672725e7f770c27bb60636eb4588315b6 (patch)
tree624f9ee513aa16ba446125bac8d56cd815513916 /testsuite
parent6e21839983c9f8e112ec23205f98117705bfcd04 (diff)
parent60ea929119a82b462bc32dd42a48972ee04420e0 (diff)
downloadsystemtap-steved-1a0264b672725e7f770c27bb60636eb4588315b6.tar.gz
systemtap-steved-1a0264b672725e7f770c27bb60636eb4588315b6.tar.xz
systemtap-steved-1a0264b672725e7f770c27bb60636eb4588315b6.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/semko/typemismatch.stp8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/semko/typemismatch.stp b/testsuite/semko/typemismatch.stp
new file mode 100755
index 00000000..94a49d53
--- /dev/null
+++ b/testsuite/semko/typemismatch.stp
@@ -0,0 +1,8 @@
+#! stap -p2
+
+
+global noo
+
+probe begin { foo = 1 ; foo = "bar" ; noo = 4 }
+
+probe end { foo = "zoo" ; foo <<< 2 ; noo = "zoo" } \ No newline at end of file