diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py | 2 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py index 3803104bef7..7bddc0cadcc 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py @@ -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 diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py index 6d461b5e264..0943d99ee83 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py @@ -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(), |