cosmetic
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Mon, 13 Feb 2012 10:52:51 +0000 (11:52 +0100)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Mon, 13 Feb 2012 10:52:51 +0000 (11:52 +0100)
system/Substrate.py

index c9a6827..36b321b 100644 (file)
@@ -705,8 +705,7 @@ class TestInstance:
         else:                   msg += " !!!pids=%s!!!"%self.pids
         msg += " @%s"%self.pretty_timestamp()
         if self.broken_steps:
-            msg += "\n BROKEN IN STEPS"
-            for (i,s) in self.broken_steps: msg += " %s@%s"%(s,i)
+            msg += " [BROKEN=" + " ".join( [ "%s@%s"%(s,i) for (i,s) in self.broken_steps ] ) + "]"
         return msg
 
 class TestBox (Box):