[Lldb-commits] [lldb] r257761 - Update some XFAILs after the 3.8->3.9 version change

Tamas Berghammer via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 14 04:49:49 PST 2016


Author: tberghammer
Date: Thu Jan 14 06:49:48 2016
New Revision: 257761

URL: http://llvm.org/viewvc/llvm-project?rev=257761&view=rev
Log:
Update some XFAILs after the 3.8->3.9 version change

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
    lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py?rev=257761&r1=257760&r2=257761&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py Thu Jan 14 06:49:48 2016
@@ -16,7 +16,7 @@ class BreakpointLocationsTestCase(TestBa
     mydir = TestBase.compute_mydir(__file__)
 
     @expectedFailureWindows("llvm.org/pr24528")
-    @expectedFailureAll(oslist=["linux"], compiler="clang", compiler_version=["=", "3.8"], archs=["i386"], debug_info="dwo")
+    @expectedFailureAll(oslist=["linux"], compiler="clang", compiler_version=[">=", "3.8"], archs=["i386"], debug_info="dwo")
     def test(self):
         """Test breakpoint enable/disable for a breakpoint ID with multiple locations."""
         self.build()

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py?rev=257761&r1=257760&r2=257761&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py Thu Jan 14 06:49:48 2016
@@ -21,7 +21,7 @@ class ConstVariableTestCase(TestBase):
         compiler="clang", compiler_version=["=", "3.7"])
     @expectedFailureAll(
         oslist=["freebsd", "linux"],
-        compiler="clang", compiler_version=["=", "3.8"])
+        compiler="clang", compiler_version=[">=", "3.8"])
     @expectedFailureAll(oslist=["freebsd", "linux"], compiler="icc")
     @expectedFailureAll(archs=['mips', 'mipsel', 'mips64', 'mips64el'])
     @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows")




More information about the lldb-commits mailing list