[Lldb-commits] [lldb] r268194 - Update test for r268192.

Kuba Brecka via lldb-commits lldb-commits at lists.llvm.org
Sun May 1 04:32:10 PDT 2016


Author: kuba.brecka
Date: Sun May  1 06:32:10 2016
New Revision: 268194

URL: http://llvm.org/viewvc/llvm-project?rev=268194&view=rev
Log:
Update test for r268192.


Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py?rev=268194&r1=268193&r2=268194&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py Sun May  1 06:32:10 2016
@@ -62,8 +62,8 @@ class AsanTestCase(TestBase):
         # test the 'memory history' command
         self.expect("memory history 'pointer'",
             substrs = [
-                'Memory allocated at', 'a.out`f1', 'main.c:%d' % self.line_malloc,
-                'Memory deallocated at', 'a.out`f2', 'main.c:%d' % self.line_free])
+                'Memory allocated by Thread', 'a.out`f1', 'main.c:%d' % self.line_malloc,
+                'Memory deallocated by Thread', 'a.out`f2', 'main.c:%d' % self.line_free])
 
         # do the same using SB API
         process = self.dbg.GetSelectedTarget().process
@@ -97,4 +97,4 @@ class AsanTestCase(TestBase):
         # make sure the 'memory history' command still works even when we're generating a report now
         self.expect("memory history 'another_pointer'",
             substrs = [
-                'Memory allocated at', 'a.out`f1', 'main.c:%d' % self.line_malloc2])
+                'Memory allocated by Thread', 'a.out`f1', 'main.c:%d' % self.line_malloc2])




More information about the lldb-commits mailing list