[Lldb-commits] [lldb] r266924 - Removed extraneous print() in decorator for enabling module debugging

Kate Stone via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 20 14:59:44 PDT 2016


Author: kate
Date: Wed Apr 20 16:59:43 2016
New Revision: 266924

URL: http://llvm.org/viewvc/llvm-project?rev=266924&view=rev
Log:
Removed extraneous print() in decorator for enabling module debugging


Modified:
    lldb/trunk/packages/Python/lldbsuite/test/decorators.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/decorators.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/decorators.py?rev=266924&r1=266923&r2=266924&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/decorators.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/decorators.py Wed Apr 20 16:59:43 2016
@@ -509,7 +509,6 @@ def skipUnlessClangModules():
     """Decorate the item to skip test unless Clang -gmodules flag is supported."""
     def is_compiler_clang_with_gmodules(self):
         compiler_path = self.getCompiler()
-        print(compiler_path)
         compiler = os.path.basename(compiler_path)
         if compiler != "clang":
             return "Test requires clang as compiler"




More information about the lldb-commits mailing list