diff options
Diffstat (limited to 'testsuite/semko/twelve.stp')
-rwxr-xr-x | testsuite/semko/twelve.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/semko/twelve.stp b/testsuite/semko/twelve.stp index ab71d579..c91eb743 100755 --- a/testsuite/semko/twelve.stp +++ b/testsuite/semko/twelve.stp @@ -1,6 +1,6 @@ #! stap -p2 probe end { - for (a=0; "hello";) {} - while ("goodbye") {} + for (a=0; "hello";) {println("hello")} + while ("goodbye") {println("world")} } |