diff options
author | dsmith <dsmith> | 2006-05-24 15:09:42 +0000 |
---|---|---|
committer | dsmith <dsmith> | 2006-05-24 15:09:42 +0000 |
commit | 357134252c66425e159c9eff011e35a70faf3e11 (patch) | |
tree | 2524a332d361acd3b2dec6cd071984a543b4ce02 /testsuite/parseko/functiondecl05.stp | |
parent | e5c899dc4a42a8b84f42f3e6dd5a8bb3ec14a1d0 (diff) | |
download | systemtap-steved-357134252c66425e159c9eff011e35a70faf3e11.tar.gz systemtap-steved-357134252c66425e159c9eff011e35a70faf3e11.tar.xz systemtap-steved-357134252c66425e159c9eff011e35a70faf3e11.zip |
2006-05-24 David Smith <dsmith@redhat.com>
* testsuite/parseko/cmdlinearg01.stp: New file.
* testsuite/parseko/cmdlinearg02.stp: New file.
* testsuite/parseko/eighteen.stp: New file.
* testsuite/parseko/foreachstmt01.stp: New file.
* testsuite/parseko/foreachstmt02.stp: New file.
* testsuite/parseko/foreachstmt03.stp: New file.
* testsuite/parseko/foreachstmt04.stp: New file.
* testsuite/parseko/foreachstmt05.stp: New file.
* testsuite/parseko/forstmt01.stp: New file.
* testsuite/parseko/forstmt02.stp: New file.
* testsuite/parseko/forstmt03.stp: New file.
* testsuite/parseko/forstmt04.stp: New file.
* testsuite/parseko/functiondecl01.stp: New file.
* testsuite/parseko/functiondecl02.stp: New file.
* testsuite/parseko/functiondecl03.stp: New file.
* testsuite/parseko/functiondecl04.stp: New file.
* testsuite/parseko/functiondecl05.stp: New file.
* testsuite/parseko/functiondecl06.stp: New file.
* testsuite/parseko/functiondecl07.stp: New file.
* testsuite/parseko/ifstmt01.stp: New file.
* testsuite/parseko/ifstmt02.stp: New file.
* testsuite/parseko/nineteen.stp: New file.
* testsuite/parseko/preprocess01.stp: New file.
* testsuite/parseko/preprocess02.stp: New file.
* testsuite/parseko/preprocess03.stp: New file.
* testsuite/parseko/preprocess04.stp: New file.
* testsuite/parseko/preprocess05.stp: New file.
* testsuite/parseko/preprocess06.stp: New file.
* testsuite/parseko/preprocess07.stp: New file.
* testsuite/parseko/preprocess08.stp: New file.
* testsuite/parseko/preprocess09.stp: New file.
* testsuite/parseko/probepoint01.stp: New file.
* testsuite/parseko/probepoint02.stp: New file.
* testsuite/parseko/probepoint03.stp: New file.
* testsuite/parseko/seventeen.stp: New file.
* testsuite/parseko/ternarystmt01.stp: New file.
* testsuite/parseko/twenty.stp: New file.
* testsuite/parseko/twentyone.stp: New file.
* testsuite/parseko/whilestmt01.stp: New file.
* testsuite/parseko/whilestmt02.stp: New file.
Diffstat (limited to 'testsuite/parseko/functiondecl05.stp')
-rwxr-xr-x | testsuite/parseko/functiondecl05.stp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/parseko/functiondecl05.stp b/testsuite/parseko/functiondecl05.stp new file mode 100755 index 00000000..1406769d --- /dev/null +++ b/testsuite/parseko/functiondecl05.stp @@ -0,0 +1,7 @@ +#! stap -p1 + +# bad function declaration - bad parameter list +function decl(*) +{ + return 0 +} |