[Lldb-commits] [lldb] r355999 - [test] Some unicode sequences can't be printed, and Py 3 is more picky.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 12 17:48:32 PDT 2019


Author: davide
Date: Tue Mar 12 17:48:32 2019
New Revision: 355999

URL: http://llvm.org/viewvc/llvm-project?rev=355999&view=rev
Log:
[test] Some unicode sequences can't be printed, and Py 3 is more picky.

Given this was under trace, it can just be removed. If somebody
ever needs to debug this testcase again and print the data, they
can add a new statement.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py?rev=355999&r1=355998&r2=355999&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py Tue Mar 12 17:48:32 2019
@@ -74,10 +74,6 @@ class SBDataAPICase(TestBase):
             print(foobar)
 
         data = foobar.GetPointeeData(0, 2)
-
-        if self.TraceOn():
-            print(data)
-
         offset = 0
         error = lldb.SBError()
 




More information about the lldb-commits mailing list