[llvm-commits] CVS: llvm/test/lib/llvm.exp

Reid Spencer reid at x10sys.com
Sat Apr 21 11:47:09 PDT 2007



Changes in directory llvm/test/lib:

llvm.exp updated: 1.16 -> 1.17
---
Log message:

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.


---
Diffs of the changes:  (+4 -4)

 llvm.exp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/test/lib/llvm.exp
diff -u llvm/test/lib/llvm.exp:1.16 llvm/test/lib/llvm.exp:1.17
--- llvm/test/lib/llvm.exp:1.16	Fri Apr 20 16:24:01 2007
+++ llvm/test/lib/llvm.exp	Sat Apr 21 13:46:52 2007
@@ -13,21 +13,21 @@
       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 {
       }






More information about the llvm-commits mailing list