[Lldb-commits] [lldb] caa2408 - [lldb] Speculative fix for the entry values test on arm64

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon May 11 08:54:47 PDT 2020


Author: Pavel Labath
Date: 2020-05-11T17:54:34+02:00
New Revision: caa2408cbe0a21e175cb287795d283ec4196cdee

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

LOG: [lldb] Speculative fix for the entry values test on arm64

The bot fails with a message which seems to indicate a problem in option
parsing. Avoid grouping the options to see if that helps.

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 1d48bac455a3..c739a05f421e 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
@@ -18,7 +18,7 @@ __attribute__((noinline)) void func1(int &sink) {
   use<int &>(dummy);
 
   ++global;
-  //% self.filecheck("image lookup -va $pc", "main.cpp", "-check-prefix=FUNC1-DESC")
+  //% self.filecheck("image lookup -v -a $pc", "main.cpp", "-check-prefix=FUNC1-DESC")
   // FUNC1-DESC: name = "sink", type = "int &", location = DW_OP_entry_value
 }
 


        


More information about the lldb-commits mailing list