diff options
author | fche <fche> | 2006-03-03 17:44:23 +0000 |
---|---|---|
committer | fche <fche> | 2006-03-03 17:44:23 +0000 |
commit | 4090de8ca2717fd028548f06783582b7c6c74931 (patch) | |
tree | 0c927c64a639400604312439d381af8bf3d03bdc /testsuite/buildok/indent.stp | |
parent | ace00081c139d99e0229bb62534dfc6ba3a2bb02 (diff) | |
download | systemtap-steved-4090de8ca2717fd028548f06783582b7c6c74931.tar.gz systemtap-steved-4090de8ca2717fd028548f06783582b7c6c74931.tar.xz systemtap-steved-4090de8ca2717fd028548f06783582b7c6c74931.zip |
2006-03-03 Frank Ch. Eigler <fche@elastic.org>
* tapset/indent.stp, indent-default.stp: New little tapset.
* stapfuncs.5.in: Document it.
* testsuite/buildok/indent.stp: Build it.
Diffstat (limited to 'testsuite/buildok/indent.stp')
-rwxr-xr-x | testsuite/buildok/indent.stp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/buildok/indent.stp b/testsuite/buildok/indent.stp new file mode 100755 index 00000000..03480a51 --- /dev/null +++ b/testsuite/buildok/indent.stp @@ -0,0 +1,6 @@ +probe begin { + print (thread_indent (1)) print ("yo\n") + print (thread_indent (-1)) print ("ta\n") + exit () +} + |