diff options
author | Adrian McCarthy <amccarth@google.com> | 2016-02-25 00:24:07 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2016-02-25 00:24:07 +0000 |
commit | 17dd4fe27bbfd441d3528405e02736fef0cf52d0 (patch) | |
tree | a96f3c30414136c61069b814e5aa72d626f30f60 /lldb/packages/Python/lldbsuite/test | |
parent | 161dc1c60532d5926a628d9dde76b517cc299e06 (diff) | |
download | bcm5719-llvm-17dd4fe27bbfd441d3528405e02736fef0cf52d0.tar.gz bcm5719-llvm-17dd4fe27bbfd441d3528405e02736fef0cf52d0.zip |
XFail TestInlines.py on Windows with clang.
Test expects the breakpoint to resolve to three locations, but clang on windows yields only 2.
llvm.org/pr26710
llvm-svn: 261810
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestInlines.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestInlines.py b/lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestInlines.py index 61dbcaa6d58..b75f0bedff5 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestInlines.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestInlines.py @@ -19,6 +19,7 @@ class InlinesTestCase(TestBase): self.line = line_number('inlines.c', '// Set break point at this line.') @expectedFailureAll("llvm.org/pr26710", oslist=["linux"], compiler="gcc") + @expectedFailureAll("llvm.org/pr26710", oslist=["windows"], compiler="clang") def test(self): """Test that local variables are visible in expressions.""" self.build() |