From 03dae31aca63cef0584dc25cc494005f1f241f99 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 2 Mar 2022 22:33:38 -0800 Subject: [PATCH] [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. --- .../param_entry_vals/basic_entry_values/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 a1804254931c..91769e876801 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) {