diff options
author | Mark Wielaard <mjw@redhat.com> | 2009-04-21 20:01:00 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-04-21 20:01:00 +0200 |
commit | 192d5136bbfcd1e61c2f17cc52df875a954d24ec (patch) | |
tree | 27dd76c7386e5b8d177756ad8175e5b700f8541a /testsuite/buildok/ustack.stp | |
parent | 41d9243cc9d107d1980e18537090ed358dc7920a (diff) | |
parent | 7d7f074398802c84f544e263995ce15874b9f408 (diff) | |
download | systemtap-steved-192d5136bbfcd1e61c2f17cc52df875a954d24ec.tar.gz systemtap-steved-192d5136bbfcd1e61c2f17cc52df875a954d24ec.tar.xz systemtap-steved-192d5136bbfcd1e61c2f17cc52df875a954d24ec.zip |
Merge branch 'user_unwind'
Diffstat (limited to 'testsuite/buildok/ustack.stp')
-rwxr-xr-x | testsuite/buildok/ustack.stp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/buildok/ustack.stp b/testsuite/buildok/ustack.stp new file mode 100755 index 00000000..23af0bff --- /dev/null +++ b/testsuite/buildok/ustack.stp @@ -0,0 +1,10 @@ +#! stap -p4 +# +# Test the translatability for ubacktrace(), print_ustack() +# and print_ubacktrace() +# +probe begin +{ + print_ustack(ubacktrace()); + print_ubacktrace(); +} |