diff options
author | fche <fche> | 2007-08-17 02:25:22 +0000 |
---|---|---|
committer | fche <fche> | 2007-08-17 02:25:22 +0000 |
commit | 1902aec1df32bb36c7e71b829a65543e9475ced3 (patch) | |
tree | 4dcf6e21beaa4c9a7eb74b83bd2165bc2c7d9961 /testsuite | |
parent | 7ab87febe805d86b81c393b13e8de69f2ab9b684 (diff) | |
download | systemtap-steved-1902aec1df32bb36c7e71b829a65543e9475ced3.tar.gz systemtap-steved-1902aec1df32bb36c7e71b829a65543e9475ced3.tar.xz systemtap-steved-1902aec1df32bb36c7e71b829a65543e9475ced3.zip |
2007-08-16 Frank Ch. Eigler <fche@elastic.org>
PR 1315.
* target_set.stp: New tapset file.
* stapfuncs.5.in: Document new target_set tapset.
* buildok/fortyfive.stp: New test.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/ChangeLog | 5 | ||||
-rwxr-xr-x | testsuite/buildok/fortyfive.stp | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index 030848e5..db477c27 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-08-16 Frank Ch. Eigler <fche@elastic.org> + + PR 1315. + * buildok/fortyfive.stp: New test. + 2007-08-16 Josh Stone <joshua.i.stone@intel.com> PR 4591 diff --git a/testsuite/buildok/fortyfive.stp b/testsuite/buildok/fortyfive.stp new file mode 100755 index 00000000..0d5b82ed --- /dev/null +++ b/testsuite/buildok/fortyfive.stp @@ -0,0 +1,3 @@ +#! stap -p4 +probe syscall.write { if (target_set_pid (pid())) printf ("%d (%d)\n", pid(), ppid()) } +probe end { target_set_report () } |