[Lldb-commits] [lldb] 34d02fa - [LLDB][NativePDB] fix find-functions.cpp failure on windows bots

Zequan Wu via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 29 10:12:57 PST 2021


Author: Zequan Wu
Date: 2021-11-29T10:05:09-08:00
New Revision: 34d02fada28753221eda576e2f651f9b23c3f1af

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

LOG: [LLDB][NativePDB] fix find-functions.cpp failure on windows bots

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/NativePDB/find-functions.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/NativePDB/find-functions.cpp b/lldb/test/Shell/SymbolFile/NativePDB/find-functions.cpp
index 969ba058a394c..6e93afee0601c 100644
--- a/lldb/test/Shell/SymbolFile/NativePDB/find-functions.cpp
+++ b/lldb/test/Shell/SymbolFile/NativePDB/find-functions.cpp
@@ -26,10 +26,10 @@ int main(int argc, char **argv) {
 }
 
 // FIND-MAIN:      Function: id = {{.*}}, name = "main"
-// FIND-MAIN-NEXT: FuncType: id = {{.*}}, byte-size = 0, compiler_type = "int (int, char **)"
+// FIND-MAIN-NEXT: FuncType: id = {{.*}}, compiler_type = "int (int, char **)"
 
 // FIND-STATIC:      Function: id = {{.*}}, name = "static_fn"
-// FIND-STATIC-NEXT: FuncType: id = {{.*}}, byte-size = 0, compiler_type = "int (void)"
+// FIND-STATIC-NEXT: FuncType: id = {{.*}}, compiler_type = "int (void)"
 
 // FIND-VAR:      Function: id = {{.*}}, name = "varargs_fn"
-// FIND-VAR-NEXT: FuncType: id = {{.*}}, byte-size = 0, compiler_type = "int (int, int, ...)"
+// FIND-VAR-NEXT: FuncType: id = {{.*}}, compiler_type = "int (int, int, ...)"


        


More information about the lldb-commits mailing list