[Lldb-commits] [lldb] r373074 - [lldb] Disable testing entry values as memory location

Djordje Todorovic via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 27 05:16:29 PDT 2019


Author: djtodoro
Date: Fri Sep 27 05:16:29 2019
New Revision: 373074

URL: http://llvm.org/viewvc/llvm-project?rev=373074&view=rev
Log:
[lldb] Disable testing entry values as memory location

The D67717 excludes such locations for now.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp?rev=373074&r1=373073&r2=373074&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp Fri Sep 27 05:16:29 2019
@@ -152,7 +152,10 @@ int main() {
   func2(sink, 123);
 
   // Test evaluation of "DW_OP_fbreg -24, DW_OP_deref" in the parent frame.
+  // Disabled for now, see: llvm.org/PR43343
+#if 0
   func3(sink, s1.field2);
+#endif
 
   // The sequences `main -> func4 -> func{5,6}_amb -> sink` are both plausible.
   // Test that lldb doesn't attempt to guess which one occurred: entry value




More information about the lldb-commits mailing list