diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-09-27 12:16:29 +0000 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-09-27 12:16:29 +0000 |
commit | 06bc9d579cacae1f4209635bb2770b61231befbe (patch) | |
tree | 6c3766b767362ae34397d262ea249ba4abf37182 /lldb/packages/Python/lldbsuite | |
parent | 7b8f546522551545eb3a2e3df00e247eca7e841b (diff) | |
download | bcm5719-llvm-06bc9d579cacae1f4209635bb2770b61231befbe.tar.gz bcm5719-llvm-06bc9d579cacae1f4209635bb2770b61231befbe.zip |
[lldb] Disable testing entry values as memory location
The D67717 excludes such locations for now.
llvm-svn: 373074
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp b/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp index 6efd5708a73..d49ed4985cc 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp +++ b/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp @@ -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 |