Put failure information on a separate line. Hopefully this unbreaks the

nightly tester which expects the FAIL: line to only have the test name on
it.

llvm-svn: 36310
This commit is contained in:
Reid Spencer 2007-04-21 18:46:52 +00:00
parent 0c1349e6bc
commit c0d770b8a1
1 changed files with 4 additions and 4 deletions

View File

@ -13,21 +13,21 @@ proc execOneLine { test PRS outcome lineno line } {
CHILDSTATUS {
set status [lindex $::errorCode 2]
if { $status != 0 } {
set resultmsg "$test: exit($status)$errmsg"
set resultmsg "$test\nFailed with exit($status)$errmsg"
}
}
CHILDKILLED {
set signal [lindex $::errorCode 2]
set resultmsg "$test: signal($signal)$errmsg"
set resultmsg "$test\nFailed with signal($signal)$errmsg"
}
CHILDSUSP {
set signal [lindex $::errorCode 2]
set resultmsg "$test: suspend($signal)$errmsg"
set resultmsg "$test\nFailed with suspend($signal)$errmsg"
}
POSIX {
set posixNum [lindex $::errorCode 1]
set posixMsg [lindex $::errorCode 2]
set resultmsg "$test: posix($posixNum,$posixMsg)$errmsg"
set resultmsg "$test\nFailed with posix($posixNum,$posixMsg)$errmsg"
}
NONE {
}