[Lldb-commits] [lldb] fc51797 - [lldb] Fix test expectation in `TestFrameRecognizer.py` (#106281)

via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 27 13:59:17 PDT 2024


Author: Adrian Vogelsgesang
Date: 2024-08-27T22:59:14+02:00
New Revision: fc517973c299d879f0795d37500a7db1f4d63588

URL: https://github.com/llvm/llvm-project/commit/fc517973c299d879f0795d37500a7db1f4d63588
DIFF: https://github.com/llvm/llvm-project/commit/fc517973c299d879f0795d37500a7db1f4d63588.diff

LOG: [lldb] Fix test expectation in `TestFrameRecognizer.py` (#106281)

Added: 
    

Modified: 
    lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py b/lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py
index e25df2b6cdc245..24d6a67c0ccd48 100644
--- a/lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py
+++ b/lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py
@@ -58,7 +58,7 @@ def test_frame_recognizer_1(self):
         self.expect(
             "frame recognizer list",
             substrs=[
-                "1: recognizer.MyOtherFrameRecognizer, module a.out, demangled symbol bar (regexp)"
+                "1: recognizer.MyOtherFrameRecognizer, module a.out, demangled symbol regex bar"
             ],
         )
         self.expect(
@@ -81,7 +81,7 @@ def test_frame_recognizer_1(self):
         self.expect(
             "frame recognizer list",
             substrs=[
-                "1: recognizer.MyOtherFrameRecognizer, module a.out, demangled symbol regexp bar"
+                "1: recognizer.MyOtherFrameRecognizer, module a.out, demangled symbol regex bar"
             ],
         )
         self.expect(


        


More information about the lldb-commits mailing list