diff options
author | Pavel Labath <labath@google.com> | 2015-12-14 12:09:28 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-12-14 12:09:28 +0000 |
commit | b8ea7a0ed30b391cfb35762a660393bd3c601216 (patch) | |
tree | e2ad4fbdbb430adf58f9719d8eede4259218c0da /lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py | |
parent | c974545cdebccc6aca257733d67fbeb63db221d3 (diff) | |
download | bcm5719-llvm-b8ea7a0ed30b391cfb35762a660393bd3c601216.tar.gz bcm5719-llvm-b8ea7a0ed30b391cfb35762a660393bd3c601216.zip |
Extend XFAIL on TestNamespaceLookup on linux
one of the tests seems to (occasionally) fail with clang as well.
llvm-svn: 255492
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py index 5e28da727d0..4ea5e281f8c 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py @@ -143,7 +143,7 @@ class NamespaceLookupTestCase(TestBase): # finds the global ::func(). self.expect("expr -- func()", startstr = "(int) $0 = 2") - @expectedFailureAll(bugnumber="llvm.org/pr25819", oslist=["linux"], compiler="gcc") + @expectedFailureLinux("llvm.org/pr25819") def test_scope_lookup_before_using_with_run_command(self): """Test scope lookup before using in lldb.""" self.build() |