diff options
author | tpnguyen <tpnguyen> | 2006-06-08 23:18:46 +0000 |
---|---|---|
committer | tpnguyen <tpnguyen> | 2006-06-08 23:18:46 +0000 |
commit | 628a07f130c67aa5de7134c761dd443ff547339a (patch) | |
tree | 4eb7ede85903e0eb34ff817269a0a5f08da292d4 | |
parent | d3a4bc8e677296e6a2a6c270f2c7663253041cc2 (diff) | |
download | systemtap-steved-628a07f130c67aa5de7134c761dd443ff547339a.tar.gz systemtap-steved-628a07f130c67aa5de7134c761dd443ff547339a.tar.xz systemtap-steved-628a07f130c67aa5de7134c761dd443ff547339a.zip |
*** empty log message ***
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | testsuite/buildok/ioblock_test.stp | 11 |
2 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2006-06-08 Thang P Nguyen <thang.p.nguyen@intel.com> + + * testsuite/buildok/ioblock_test.stp: test ioblock + 2006-06-05 David Smith <dsmith@redhat.com> * tapsets.cxx (dwflpp::express_as_string): New function. diff --git a/testsuite/buildok/ioblock_test.stp b/testsuite/buildok/ioblock_test.stp new file mode 100755 index 00000000..f15d1643 --- /dev/null +++ b/testsuite/buildok/ioblock_test.stp @@ -0,0 +1,11 @@ +#! stap -p4 + +probe ioblock.submit { + log(pp()) + printf("%s\t%d\t%s\t%d\n", bio_devname, sector, rw_string, rw) +} + +probe ioblock.end { + log(pp()) + printf("%s\t%d\t%d\t%s\t%d\t%d\n", bio_devname, sector, bytes_done, rw_string, rw, error) +} |