[Lldb-commits] [lldb] 7349bc3 - Speculatively fix the lldb test bots

Aaron Ballman via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 14 05:37:21 PDT 2022


Author: Aaron Ballman
Date: 2022-10-14T08:37:08-04:00
New Revision: 7349bc34836b73518ca3e9366019ef20094f2525

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

LOG: Speculatively fix the lldb test bots

This should fix the issue found by:
https://lab.llvm.org/buildbot/#/builders/68/builds/41100

Added: 
    

Modified: 
    lldb/test/API/commands/expression/expr_inside_lambda/TestExprInsideLambdas.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/expression/expr_inside_lambda/TestExprInsideLambdas.py b/lldb/test/API/commands/expression/expr_inside_lambda/TestExprInsideLambdas.py
index 9b8937aaa0c23..aa7c01c055fc2 100644
--- a/lldb/test/API/commands/expression/expr_inside_lambda/TestExprInsideLambdas.py
+++ b/lldb/test/API/commands/expression/expr_inside_lambda/TestExprInsideLambdas.py
@@ -112,7 +112,7 @@ def test_expr_inside_lambda(self):
                                            " 'base_var'"))
 
         self.expectExprError("local_var", ("use of non-static data member 'local_var'"
-                                           " of '' from nested type 'LocalLambdaClass'"))
+                                           " of '(unnamed class)' from nested type 'LocalLambdaClass'"))
 
         # Inside non_capturing_method
         lldbutil.continue_to_breakpoint(process, bkpt)


        


More information about the lldb-commits mailing list