Add "Failing Tests .." line to dosep logs
authorYing Chen <chying@google.com>
Thu, 28 May 2015 23:51:49 +0000 (23:51 +0000)
committerYing Chen <chying@google.com>
Thu, 28 May 2015 23:51:49 +0000 (23:51 +0000)
Summary:
-Buildbot parser depends on this line as start flag
-Will remove the dependency from buildbot parser, but it takes some time to take effect
-Will remove this line from printout after buildbot master reconfig

Reviewers: chaoren, vharron

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D10110

llvm-svn: 238527

lldb/test/dosep.py

index dedc609..ce0404b 100755 (executable)
@@ -354,6 +354,7 @@ Run lldb test suite using a separate process for each test file.
     print "Ran %d test cases (%d failed) (%f%%)" % (num_tests, all_fails, 100.0*all_fails/num_tests)
     if len(failed) > 0:
         failed.sort()
+        print "Failing Tests (%d)" % len(failed)
         for f in failed:
             print "%s: LLDB (suite) :: %s (%s)" % (
                 "TIMEOUT" if f in timed_out else "FAIL", f, system_info