diff options
Diffstat (limited to 'testsuite/systemtap.syscall/test.tcl')
-rwxr-xr-x | testsuite/systemtap.syscall/test.tcl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/testsuite/systemtap.syscall/test.tcl b/testsuite/systemtap.syscall/test.tcl index 5d1db2a3..fe16358d 100755 --- a/testsuite/systemtap.syscall/test.tcl +++ b/testsuite/systemtap.syscall/test.tcl @@ -89,27 +89,27 @@ proc run_one_test {filename flags} { } else { set result "FAIL $testname" send_log "$testname FAILED. output of \"$cmd\" was:" - send_log "------------------------------------------" + send_log "\n------------------------------------------\n" send_log $output - send_log "------------------------------------------" - send_log "RESULTS: (\'*\' = MATCHED EXPECTED)" + send_log "\n------------------------------------------\n" + send_log "RESULTS: (\'*\' = MATCHED EXPECTED)\n" set i 0 foreach line [split $output "\n"] { if {[regexp "${testname}: " $line]} { if {[regexp $results($i) $line]} { - send_log "*$line" + send_log "*$line\n" incr i if {$i >= $ind} {break} } else { - send_log "$line" + send_log "$line\n" } } } if {$i < $ind} { - send_log "--------- EXPECTED and NOT MATCHED ----------" + send_log "--------- EXPECTED and NOT MATCHED ----------\n" } for {} {$i < $ind} {incr i} { - send_log "$results($i)" + send_log "$results($i)\n" } } cleanup |