[Lldb-commits] [lldb] 9952d59 - [lldb] Fix globals-bss.cpp which was broken in https://reviews.llvm.org/D105055

Stella Stamenova via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 29 13:39:31 PDT 2021


Author: Stella Stamenova
Date: 2021-06-29T13:39:18-07:00
New Revision: 9952d591ccc49cbcbf9c89d5191e6111c44703a6

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

LOG: [lldb] Fix globals-bss.cpp which was broken in https://reviews.llvm.org/D105055

-S replaced -s, so the test needs to be updated to use the new option

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/NativePDB/globals-bss.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/NativePDB/globals-bss.cpp b/lldb/test/Shell/SymbolFile/NativePDB/globals-bss.cpp
index 3744a2837055d..9c65c26499cd1 100644
--- a/lldb/test/Shell/SymbolFile/NativePDB/globals-bss.cpp
+++ b/lldb/test/Shell/SymbolFile/NativePDB/globals-bss.cpp
@@ -4,7 +4,7 @@
 // Make sure we can read variables from BSS
 // RUN: %clang_cl --target=x86_64-windows-msvc -Od -Z7 -c /Fo%t.obj -- %s
 // RUN: lld-link -debug:full -nodefaultlib -entry:main %t.obj -out:%t.exe -pdb:%t.pdb
-// RUN: llvm-readobj -s %t.exe | FileCheck --check-prefix=BSS %s
+// RUN: llvm-readobj -S %t.exe | FileCheck --check-prefix=BSS %s
 // RUN: env LLDB_USE_NATIVE_PDB_READER=1 %lldb -f %t.exe -s \
 // RUN:     %p/Inputs/globals-bss.lldbinit 2>&1 | FileCheck %s
 


        


More information about the lldb-commits mailing list