From 77bfdeb092d186179efd7e032ba1c11fc0a6a444 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 2 Mar 2022 15:56:43 -0800 Subject: [PATCH] [lldb] Update error messages in TestMemoryHistory.py Update TestMemoryHistory.py for daba82362228b4aa460c26079c028ebf832066fd which changes the CommandObject & Disassemble error messages . --- lldb/test/API/functionalities/asan/TestMemoryHistory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/functionalities/asan/TestMemoryHistory.py b/lldb/test/API/functionalities/asan/TestMemoryHistory.py index 2ba3a92c9b55..185b3ecba5fa 100644 --- a/lldb/test/API/functionalities/asan/TestMemoryHistory.py +++ b/lldb/test/API/functionalities/asan/TestMemoryHistory.py @@ -40,7 +40,7 @@ class AsanTestCase(TestBase): # "memory history" command should not work without a process self.expect("memory history 0", error=True, - substrs=["invalid process"]) + substrs=["Command requires a current process"]) self.runCmd("run")