diff options
-rw-r--r-- | testsuite/systemtap.base/sdt_types.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.base/sdt_types.stp b/testsuite/systemtap.base/sdt_types.stp index 5f9ebcab..1742b8b8 100644 --- a/testsuite/systemtap.base/sdt_types.stp +++ b/testsuite/systemtap.base/sdt_types.stp @@ -125,9 +125,9 @@ probe process(@1).mark("short_int_ptr_volatile_var") probe process(@1).mark("int_var") { if ($arg1 != 65536) - printf("FAIL: int_var") + printf("FAIL: int_var\n") else - printf("PASS: int_var") + printf("PASS: int_var\n") } probe process(@1).mark("const_int_var") |