[Lldb-commits] [lldb] r175669 - Add logging of which test cases are run (through dosep) to help diagnose any hangs/crashes in the buildbots.

Daniel Malea daniel.malea at intel.com
Wed Feb 20 13:31:47 PST 2013


Author: dmalea
Date: Wed Feb 20 15:31:47 2013
New Revision: 175669

URL: http://llvm.org/viewvc/llvm-project?rev=175669&view=rev
Log:
Add logging of which test cases are run (through dosep) to help diagnose any hangs/crashes in the buildbots.


Modified:
    lldb/trunk/test/dosep.ty

Modified: lldb/trunk/test/dosep.ty
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dosep.ty?rev=175669&r1=175668&r2=175669&view=diff
==============================================================================
--- lldb/trunk/test/dosep.ty (original)
+++ lldb/trunk/test/dosep.ty Wed Feb 20 15:31:47 2013
@@ -27,8 +27,7 @@ def walk_and_invoke(test_root, dotest_op
                 continue
 
             command = template % (test_root, dotest_options if dotest_options else "", name, root)
-            if "-v" in dotest_options:
-                print "Running %s" % (command)
+            print "Running %s" % (command)
             if 0 != os.system(command):
                 failed.append(name) 
             else:





More information about the lldb-commits mailing list