[Lldb-commits] [lldb] r288542 - Update test expectations after AddressSanitizer text descriptions changed in r288535.
Kuba Mracek via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 2 14:11:26 PST 2016
Author: kuba.brecka
Date: Fri Dec 2 16:11:26 2016
New Revision: 288542
URL: http://llvm.org/viewvc/llvm-project?rev=288542&view=rev
Log:
Update test expectations after AddressSanitizer text descriptions changed in r288535.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.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=288542&r1=288541&r2=288542&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py Fri Dec 2 16:11:26 2016
@@ -121,7 +121,7 @@ class AsanTestCase(TestBase):
"Process should be stopped due to ASan report",
substrs=[
'stopped',
- 'stop reason = Use of deallocated memory detected'])
+ 'stop reason = Use of deallocated memory'])
# make sure the 'memory history' command still works even when we're
# generating a report now
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py?rev=288542&r1=288541&r2=288542&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py Fri Dec 2 16:11:26 2016
@@ -56,7 +56,7 @@ class AsanTestReportDataCase(TestBase):
"Process should be stopped due to ASan report",
substrs=[
'stopped',
- 'stop reason = Use of deallocated memory detected'])
+ 'stop reason = Use of deallocated memory'])
self.assertEqual(
self.dbg.GetSelectedTarget().process.GetSelectedThread().GetStopReason(),
More information about the lldb-commits
mailing list