[Lldb-commits] [lldb] r370003 - [test] Disable two of the recently (re)enabled tests on Windows.

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 26 18:34:20 PDT 2019


Author: jdevlieghere
Date: Mon Aug 26 18:34:19 2019
New Revision: 370003

URL: http://llvm.org/viewvc/llvm-project?rev=370003&view=rev
Log:
[test] Disable two of the recently (re)enabled tests on Windows.

This disables two tests on Windows that I re-enabled in r369995.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py?rev=370003&r1=370002&r2=370003&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py Mon Aug 26 18:34:19 2019
@@ -144,6 +144,7 @@ for d in test_source_dirs:
 # Generate test cases based on the collected source files
 for f in test_source_files:
     if f.endswith(".cpp") or f.endswith(".c"):
+        @skipIfWindows
         @add_test_categories(["dwarf"])
         def test_function_dwarf(self, f=f):
             if f.endswith(".cpp"):

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py?rev=370003&r1=370002&r2=370003&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py Mon Aug 26 18:34:19 2019
@@ -22,6 +22,7 @@ class StdCXXDisassembleTestCase(TestBase
         # Find the line number to break inside main().
         self.line = line_number('main.cpp', '// Set break point at this line.')
 
+    @skipIfWindows
     def test_stdcxx_disasm(self):
         """Do 'disassemble' on each and every 'Code' symbol entry from the std c++ lib."""
         self.build()




More information about the lldb-commits mailing list