[Lldb-commits] [lldb] r256270 - XFAIL TestCppNsImport on FreeBSD
Ed Maste via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 22 11:10:09 PST 2015
Author: emaste
Date: Tue Dec 22 13:10:09 2015
New Revision: 256270
URL: http://llvm.org/viewvc/llvm-project?rev=256270&view=rev
Log:
XFAIL TestCppNsImport on FreeBSD
It has an existing XFAIL annotation for GCC >= 4.9 but it also fails on
FreeBSD 10.x with Clang 3.4.1.
llvm.org/pr25925
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py?rev=256270&r1=256269&r2=256270&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py Tue Dec 22 13:10:09 2015
@@ -9,6 +9,7 @@ class TestCppNsImport(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @expectedFailureFreeBSD("llvm.org/pr25925")
@expectedFailureGcc(None, ['>=', '4.9'])
def test_with_run_command(self):
"""Tests imported namespaces in C++."""
More information about the lldb-commits
mailing list