[Lldb-commits] [lldb] 7c4e6c9 - [lldb] Skip TestSymbolFileJSON on Windows

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 9 11:33:19 PST 2023


Author: Jonas Devlieghere
Date: 2023-03-09T11:33:14-08:00
New Revision: 7c4e6c97fb689f8db8ea361fe615fe39eb332610

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

LOG: [lldb] Skip TestSymbolFileJSON on Windows

Disable the test as Windows (or at least the bot) doesn't have 'strip':

  'strip' is not recognized as an internal or external command

Added: 
    

Modified: 
    lldb/test/API/macosx/symbols/TestSymbolFileJSON.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/macosx/symbols/TestSymbolFileJSON.py b/lldb/test/API/macosx/symbols/TestSymbolFileJSON.py
index 31814ba5c85e2..9c17f07420e91 100644
--- a/lldb/test/API/macosx/symbols/TestSymbolFileJSON.py
+++ b/lldb/test/API/macosx/symbols/TestSymbolFileJSON.py
@@ -12,6 +12,7 @@ def setUp(self):
         self.source = 'main.c'
 
     @no_debug_info_test
+    @skipIfWindows # No 'strip'
     def test_symbol_file_json_address(self):
         """Test that 'target symbols add' can load the symbols from a JSON file using file addresses."""
 


        


More information about the lldb-commits mailing list