Add braces to crashed test summary (needed for buildbots to detect crashes)

llvm-svn: 176980
This commit is contained in:
Daniel Malea 2013-03-13 21:50:49 +00:00
parent b7e4e22795
commit 66586653b7
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ Run lldb test suite using a separate process for each test file.
if len(failed) > 0:
print "Failing Tests (%d)" % len(failed)
for f in failed:
print "FAIL: LLDB :: %s" % f
print "FAIL: LLDB :: (%s)" % f
sys.exit(1)
sys.exit(0)