[Lldb-commits] [lldb] 03dae31 - [lldb] Update TestBasicEntryValues.py for `image lookup` output

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 2 22:35:38 PST 2022


Author: Jonas Devlieghere
Date: 2022-03-02T22:35:34-08:00
New Revision: 03dae31aca63cef0584dc25cc494005f1f241f99

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

LOG: [lldb] Update TestBasicEntryValues.py for `image lookup` output

Update TestBasicEntryValues.py for 15983c28aa81 which changes the output
for `image lookup -v`. This should fix the debian and macos build bots.

Added: 
    

Modified: 
    lldb/test/API/functionalities/param_entry_vals/basic_entry_values/main.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/main.cpp b/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/main.cpp
index a1804254931cf..91769e8768017 100644
--- a/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/main.cpp
+++ b/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/main.cpp
@@ -20,8 +20,8 @@ __attribute__((noinline)) void func1(int &sink) {
   ++global;
   //% prefix = "FUNC1-GNU" if "GNU" in self.name else "FUNC1-V5"
   //% self.filecheck("image lookup -v -a $pc", "main.cpp", "-check-prefix="+prefix)
-  // FUNC1-GNU: name = "sink", type = "int &", location = DW_OP_GNU_entry_value
-  // FUNC1-V5: name = "sink", type = "int &", location = DW_OP_entry_value
+  // FUNC1-GNU: name = "sink", type = "int &", valid ranges = {{.*}}, location = {{.*}} DW_OP_GNU_entry_value
+  // FUNC1-V5: name = "sink", type = "int &", valid ranges = {{.*}}, location = {{.*}} DW_OP_entry_value
 }
 
 __attribute__((noinline)) void func2(int &sink, int x) {


        


More information about the lldb-commits mailing list