summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python
diff options
context:
space:
mode:
authorKuba Brecka <kuba.brecka@gmail.com>2016-05-01 11:32:10 +0000
committerKuba Brecka <kuba.brecka@gmail.com>2016-05-01 11:32:10 +0000
commitcdbc450ad6f1d72adcdf787655dc9b3517e290ef (patch)
tree0dcf58dfd62938d80b7feaeed5f4e77de0741177 /lldb/packages/Python
parent5c7b36353429ac399c81bded97b37739524ea0d6 (diff)
downloadbcm5719-llvm-cdbc450ad6f1d72adcdf787655dc9b3517e290ef.tar.gz
bcm5719-llvm-cdbc450ad6f1d72adcdf787655dc9b3517e290ef.zip
Update test for r268192.
llvm-svn: 268194
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
index 3bff268a4be..6416bccc483 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
@@ -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])
OpenPOWER on IntegriCloud