From 7349bc34836b73518ca3e9366019ef20094f2525 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Fri, 14 Oct 2022 08:36:04 -0400 Subject: [PATCH] Speculatively fix the lldb test bots This should fix the issue found by: https://lab.llvm.org/buildbot/#/builders/68/builds/41100 --- .../API/commands/expression/expr_inside_lambda/TestExprInsideLambdas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9b8937a..aa7c01c 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 @@ class ExprInsideLambdaTestCase(TestBase): " '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) -- 2.7.4