diff options
Diffstat (limited to 'testsuite/transok/seven.stp')
-rwxr-xr-x | testsuite/transok/seven.stp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/transok/seven.stp b/testsuite/transok/seven.stp new file mode 100755 index 00000000..0c0e00d7 --- /dev/null +++ b/testsuite/transok/seven.stp @@ -0,0 +1,19 @@ +#! stap -p3 +# +# run at -p4 if you want to test the array temporary +# subexpression variable assignment order is good + +global foo, bar + +probe begin +{ + x = 10 + foo["hello"] = 25 + foo["hello"]++ + ++foo["hello"] + x = foo["hello"] + foo["yo"] *= bar[x, foo["hello"], "goodbye"]++; + printk("hello from systemtap") +} + + |