[Lldb-commits] [lldb] e108638 - [lldb] Disable `watchpoint_callback.test` temporarily on darwin

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Wed May 24 10:58:50 PDT 2023


Author: Med Ismail Bennani
Date: 2023-05-24T10:58:40-07:00
New Revision: e1086384e5841e861cd19d5d980394cfcf94ef98

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

LOG: [lldb] Disable `watchpoint_callback.test` temporarily on darwin

This test started failing on the green-dragon bot, but after some
investigation, it doesn't have anything to do with Lua.

If we use a variable watchpoint with a condition using a scope variable,
if we go out-of-scope, the watpoint remains active which can the
expression evaluator to fail to parse the watchpoint condition (because
of the missing varible bindings).

For now, we should disable this test until we come up with a fix for it.

rdar://109574319

Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>

Added: 
    

Modified: 
    lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test b/lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test
index 11bbe03410774..d72496c25c2ba 100644
--- a/lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test
+++ b/lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test
@@ -1,4 +1,4 @@
-# XFAIL: system-netbsd
+# XFAIL: system-netbsd, system-darwin
 # RUN: %clang_host -x c %S/Inputs/val.c -g -o %t
 # RUN: %lldb -b -s %S/Inputs/watchpoint1.in --script-language lua %t 2>&1 | FileCheck %S/Inputs/watchpoint1.in
 # RUN: %lldb -b -s %S/Inputs/watchpoint2.in --script-language lua %t 2>&1 | FileCheck %S/Inputs/watchpoint2.in


        


More information about the lldb-commits mailing list