[Lldb-commits] [lldb] r247594 - Correct XFAIL OS list after r247576

Ed Maste via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 14 11:40:53 PDT 2015


Author: emaste
Date: Mon Sep 14 13:40:52 2015
New Revision: 247594

URL: http://llvm.org/viewvc/llvm-project?rev=247594&view=rev
Log:
Correct XFAIL OS list after r247576

In ConstVariableTestCase::test_with_dwarf_and_run_command - the test
fails with Clang (and presumably ICC) also on FreeBSD.

Modified:
    lldb/trunk/test/lang/c/const_variables/TestConstVariables.py

Modified: lldb/trunk/test/lang/c/const_variables/TestConstVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/const_variables/TestConstVariables.py?rev=247594&r1=247593&r2=247594&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/const_variables/TestConstVariables.py (original)
+++ lldb/trunk/test/lang/c/const_variables/TestConstVariables.py Mon Sep 14 13:40:52 2015
@@ -16,8 +16,8 @@ class ConstVariableTestCase(TestBase):
         self.buildDsym()
         self.const_variable()
 
-    @expectedFailureAll(oslist=["linux"], compiler="clang")
-    @expectedFailureAll(oslist=["linux"], compiler="icc")
+    @expectedFailureAll(oslist=["freebsd", "linux"], compiler="clang")
+    @expectedFailureAll(oslist=["freebsd", "linux"], compiler="icc")
     @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows")
     @expectedFailureWindows("llvm.org/pr24490: We shouldn't be using platform-specific names like `getpid` in tests")
     @dwarf_test




More information about the lldb-commits mailing list