diff options
author | Keiichi KII <k-keiichi@bx.jp.nec.com> | 2009-05-13 16:55:11 -0400 |
---|---|---|
committer | Keiichi KII <k-keiichi@bx.jp.nec.com> | 2009-05-13 16:55:11 -0400 |
commit | f90da452b402af56c7f186798911ca5f49ee0cc4 (patch) | |
tree | 63c8d4cbcecd764546ee2d89b02830969cae302f /testsuite/systemtap.base/flightrec3.stp | |
parent | 508e476d212146602499c9bf1283e15ee9f2f037 (diff) | |
download | systemtap-steved-f90da452b402af56c7f186798911ca5f49ee0cc4.tar.gz systemtap-steved-f90da452b402af56c7f186798911ca5f49ee0cc4.tar.xz systemtap-steved-f90da452b402af56c7f186798911ca5f49ee0cc4.zip |
PR 6930: Add additional testcases for flight recorder mode
* testsuite/parseko/cmdline17.stp:
command line check - bad combination with -D and -L
* testsuite/parseko/cmdline18.stp:
command line check - bad combination with -D and -d
* testsuite/parseko/cmdline19.stp:
command line check - bad combination with -D and -c
* testsuite/parseko/cmdline20.stp:
command line check - need output file with -D
* testsuite/parseko/cmdline21.stp:
command line check - need output file with -S
* testsuite/systemtap.base/flightrec3.exp:
New test case for file switching with bulk mode
* testsuite/systemtap.base/flightrec3.stp:
Test script for file switching per cpu
Diffstat (limited to 'testsuite/systemtap.base/flightrec3.stp')
-rw-r--r-- | testsuite/systemtap.base/flightrec3.stp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/systemtap.base/flightrec3.stp b/testsuite/systemtap.base/flightrec3.stp new file mode 100644 index 00000000..d660793f --- /dev/null +++ b/testsuite/systemtap.base/flightrec3.stp @@ -0,0 +1,5 @@ +probe kernel.function("update_process_times") +{ + for (j = 0; j < 100; j++) + printf("1234567890\n") +} |