[Lldb-commits] [lldb] r238527 - Add "Failing Tests .." line to dosep logs

Ying Chen chying at google.com
Thu May 28 16:51:49 PDT 2015


Author: chying
Date: Thu May 28 18:51:49 2015
New Revision: 238527

URL: http://llvm.org/viewvc/llvm-project?rev=238527&view=rev
Log:
Add "Failing Tests .." line to dosep logs

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

Modified:
    lldb/trunk/test/dosep.py

Modified: lldb/trunk/test/dosep.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dosep.py?rev=238527&r1=238526&r2=238527&view=diff
==============================================================================
--- lldb/trunk/test/dosep.py (original)
+++ lldb/trunk/test/dosep.py Thu May 28 18:51:49 2015
@@ -354,6 +354,7 @@ Run lldb test suite using a separate pro
     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





More information about the lldb-commits mailing list